| | |
| | | public class GoodsorderExport { |
| | | |
| | | |
| | | private Integer id; |
| | | |
| | | @ExcelColumn(name="商品名称" ,index =1 ) |
| | | private String goodsName; |
| | | @ExcelColumn(name="规格" ,index =2 ) |
| | | private String skuName; |
| | | @ExcelColumn(name="价格" ,index =3 ) |
| | | private String price; |
| | | @ExcelColumn(name="平台备注" ,index =4 ) |
| | | private String sysInfo; |
| | | @ExcelColumn(name="用户备注" ,index =5 ) |
| | | private String memberInfo; |
| | | @ExcelColumn(name="联系人" ,index =6 ) |
| | | private String linkeName; |
| | | @ExcelColumn(name="联系电话" ,index =7 ) |
| | | private String linkePhone; |
| | | @ExcelColumn(name="联系地址" ,index =8 ) |
| | | @ExcelColumn(name="订单编号" ,index =1,width = 10) |
| | | private Long code; |
| | | @ExcelColumn(name="商品总数量" ,index =2 ,width = 8) |
| | | private Integer totalNum; |
| | | @ExcelColumn(name="订单总价(元)" ,index =3 ,width = 8) |
| | | private BigDecimal totalPrice; |
| | | @ExcelColumn(name="积分抵扣(元)" ,index =4 ,width =8) |
| | | private BigDecimal integralPrice; |
| | | @ExcelColumn(name="优惠券优惠(元)" ,index =5 ,width = 8) |
| | | private BigDecimal couponPrice; |
| | | @ExcelColumn(name="运费(元)" ,index =6 ,width = 8) |
| | | private BigDecimal mailPrice; |
| | | @ExcelColumn(name="实付价格(元)" ,index =7 ,width = 8) |
| | | private BigDecimal price; |
| | | @ExcelColumn(name="所属经销商" ,index =8 ,width = 10) |
| | | private String shopName; |
| | | @ExcelColumn(name="经销商结算(元)" ,index =9 ,width = 8) |
| | | private BigDecimal shopSettlement; |
| | | @ExcelColumn(name="配送方式" ,index =10,width = 10 ,valueMapping = "0=快递配送;1=门店自提") |
| | | private Integer receiveType; |
| | | @ExcelColumn(name="收货人姓名" ,index =11 ,width = 10) |
| | | private String linkname; |
| | | @ExcelColumn(name="收货人电话" ,index =12 ,width = 10) |
| | | private String linkphone; |
| | | @ExcelColumn(name="收货地址" ,index =13,width = 18 ) |
| | | private String addr; |
| | | @ExcelColumn(name="订单价格" ,index =9 ) |
| | | private String allprice; |
| | | @ExcelColumn(name="状态" ,index =10 ) |
| | | private String status; |
| | | |
| | | |
| | | |
| | | @ExcelColumn(name="快递信息" ,index =14,width = 10 ) |
| | | private String kdInfo; |
| | | @ExcelColumn(name="状态" ,index =15,width = 6,valueMapping = "0=待支付;1=待发货/待自提;2=待收货;3=交易完成;4=已取消;5=部分发货;6=已退款") |
| | | private Integer status; |
| | | @ExcelColumn(name="订单时间" ,index =16,dateFormat = "yyyy-MM-dd HH:mm:ss",width = 10) |
| | | private Date createDate; |
| | | @ExcelColumn(name="商品名称/重量(单价*数量)" ,index =17 ,width = 60) |
| | | private String goodsName; |
| | | |
| | | } |