|  |  | 
 |  |  | package cc.mrbird.febs.mall.vo; | 
 |  |  |  | 
 |  |  | import com.fasterxml.jackson.annotation.JsonFormat; | 
 |  |  | import io.swagger.annotations.ApiModel; | 
 |  |  | import lombok.Data; | 
 |  |  |  | 
 |  |  | 
 |  |  |  | 
 |  |  |     private Long memberId; | 
 |  |  |  | 
 |  |  |     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") | 
 |  |  |     private Date orderTime; | 
 |  |  |  | 
 |  |  |     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") | 
 |  |  |     private Date payTime; | 
 |  |  |  | 
 |  |  |     private BigDecimal amount; | 
 
 |  |  | 
 |  |  |     </select> | 
 |  |  |  | 
 |  |  |     <select id="selectOrderListInPage" resultType="cc.mrbird.febs.mall.vo.AdminMallOrderInfoVo"> | 
 |  |  |         select * | 
 |  |  |         select *,b.name memberName,b.phone memberPhone | 
 |  |  |         from mall_order_info a | 
 |  |  |         left join mall_member b on a.member_id = b.id | 
 |  |  |         <where> | 
 
 |  |  | 
 |  |  |                 id: 'orderTable', | 
 |  |  |                 url: ctx + 'admin/order/orderList', | 
 |  |  |                 cols: [[ | 
 |  |  |                         {field: 'orderNo', title: '商品名称', minWidth: 150,align:'left'}, | 
 |  |  |                         {field: 'orderNo', title: '订单编号', minWidth: 150,align:'left'}, | 
 |  |  |                         {field: 'memberName', title: '购买人', minWidth: 150,align:'left'}, | 
 |  |  |                         {field: 'memberPhone', title: '联系方式', minWidth: 150,align:'left'}, | 
 |  |  |                         {field: 'amount', title: '订单金额', minWidth: 150,align:'left'}, | 
 |  |  |                         {field: 'orderTime', title: '下单时间', minWidth: 150,align:'left'}, | 
 |  |  |                         {field: 'payTime', title: '支付时间', minWidth: 150,align:'left'}, | 
 |  |  |                         {field: 'status', title: '状态', | 
 |  |  |                             templet: function (d) { | 
 |  |  |                                 if (d.status === 1) { |