|
|
|
@ -8,35 +8,57 @@ import java.io.Serializable;
|
|
|
|
|
@Data |
|
|
|
|
public class ImportOrderNoPackageExcelDTO implements Serializable { |
|
|
|
|
|
|
|
|
|
@ExcelProperty(value = "下单日期") |
|
|
|
|
private String orderTime; |
|
|
|
|
@ExcelProperty(value = "商场名称") |
|
|
|
|
private String dealerName; |
|
|
|
|
@ExcelProperty(value = "服务号") |
|
|
|
|
private String serviceNum ; |
|
|
|
|
@ExcelProperty(value = "订单自编号") |
|
|
|
|
private String orderCode; |
|
|
|
|
@ExcelProperty(value = "品牌") |
|
|
|
|
private String brand ; |
|
|
|
|
@ExcelProperty(value = "一级品类") |
|
|
|
|
private String firsts; |
|
|
|
|
@ExcelProperty(value = "二级品类") |
|
|
|
|
private String seconds; |
|
|
|
|
@ExcelProperty(value = "三级品类") |
|
|
|
|
private String thirds; |
|
|
|
|
@ExcelProperty(value = "物料名称") |
|
|
|
|
private String materialName; |
|
|
|
|
@ExcelProperty(value = "物料编码") |
|
|
|
|
private String materialCode; |
|
|
|
|
@ExcelProperty(value = "单位") |
|
|
|
|
private String unit; |
|
|
|
|
@ExcelProperty(value = "销售数量") |
|
|
|
|
private String num; |
|
|
|
|
@ExcelProperty(value = "合计件数") |
|
|
|
|
private String count; |
|
|
|
|
@ExcelProperty(value = "体积") |
|
|
|
|
private String volume; |
|
|
|
|
@ExcelProperty(value = "重量") |
|
|
|
|
private String weight; |
|
|
|
|
@ExcelProperty(value = "车次号") |
|
|
|
|
private String trainNumber ; |
|
|
|
|
@ExcelProperty(value = "商场编码") |
|
|
|
|
private String dealerCode; |
|
|
|
|
@ExcelProperty(value = "商场名称") |
|
|
|
|
private String dealerName; |
|
|
|
|
@ExcelProperty(value = "商场收货人") |
|
|
|
|
private String consigneePerson; |
|
|
|
|
@ExcelProperty(value = "商场收货人电话") |
|
|
|
|
private String consigneeMobile; |
|
|
|
|
@ExcelProperty(value = "商场收货地址") |
|
|
|
|
private String consigneeAddress; |
|
|
|
|
@ExcelProperty(value = "发货人") |
|
|
|
|
private String shipperPerson; |
|
|
|
|
@ExcelProperty(value = "发货人电话") |
|
|
|
|
private String shipperMobile; |
|
|
|
|
@ExcelProperty(value = "发货人地址") |
|
|
|
|
private String shipperAddress; |
|
|
|
|
@ExcelProperty(value = "收货人") |
|
|
|
|
private String customerName ; |
|
|
|
|
@ExcelProperty(value = "联系电话") |
|
|
|
|
private String customerPhone ; |
|
|
|
|
@ExcelProperty(value = "地址") |
|
|
|
|
private String customerAddress ; |
|
|
|
|
@ExcelProperty(value = "车次") |
|
|
|
|
private String trainNumber ; |
|
|
|
|
@ExcelProperty(value = "发货日期") |
|
|
|
|
private String sendDateStr ; |
|
|
|
|
@ExcelProperty(value = "品牌") |
|
|
|
|
private String brand ; |
|
|
|
|
@ExcelProperty(value = "配送区域") |
|
|
|
|
private String area ; |
|
|
|
|
@ExcelProperty(value = "服务号") |
|
|
|
|
private String serviceNum ; |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|