18 changed files with 427 additions and 56 deletions
@ -0,0 +1,134 @@ |
|||||||
|
package com.logpm.warehouse.excel; |
||||||
|
|
||||||
|
import com.alibaba.excel.annotation.ExcelProperty; |
||||||
|
import com.alibaba.excel.annotation.write.style.ColumnWidth; |
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
import java.util.Date; |
||||||
|
|
||||||
|
@Data |
||||||
|
public class QuestContrastExcel { |
||||||
|
|
||||||
|
/** |
||||||
|
* 订单自编号 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("订单自编号") |
||||||
|
private String orderCode; |
||||||
|
/** |
||||||
|
* 品牌名称 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("品牌名称") |
||||||
|
private String brandName; |
||||||
|
/** |
||||||
|
* 入库批次号 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("入库批次号") |
||||||
|
private String incomingBatch; |
||||||
|
/** |
||||||
|
* 商场 名称 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("商场名称") |
||||||
|
private String mallName; |
||||||
|
/*** |
||||||
|
* 客户名称 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("客户名称") |
||||||
|
private String customerName; |
||||||
|
/** |
||||||
|
* 三级名称 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("三级名称") |
||||||
|
private String thirdProduct; |
||||||
|
/** |
||||||
|
* 物料名称 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("物料名称") |
||||||
|
private String materialName; |
||||||
|
/** |
||||||
|
* 总件数 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("总件数") |
||||||
|
private Integer totalNumber; |
||||||
|
/** |
||||||
|
* 在库数据 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("在库数据") |
||||||
|
private Integer handQuantity; |
||||||
|
/** |
||||||
|
* 所在托盘 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("所在托盘") |
||||||
|
private String pallet; |
||||||
|
/** |
||||||
|
* 货物信息 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("货物信息") |
||||||
|
private String goodsAllocation; |
||||||
|
/** |
||||||
|
* 盘点人 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("盘点人") |
||||||
|
private String updateUser; |
||||||
|
/** |
||||||
|
* 盘点时间 |
||||||
|
*/ |
||||||
|
/* @ColumnWidth(20) |
||||||
|
@ExcelProperty("盘点时间") |
||||||
|
private Date updateTime;*/ |
||||||
|
|
||||||
|
/** |
||||||
|
* 盘点时间 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("盘点时间") |
||||||
|
private String updateTimes; |
||||||
|
/** |
||||||
|
* 盘点数据 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("盘点数据") |
||||||
|
private Integer questNum; |
||||||
|
/** |
||||||
|
* 差异数 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("差异数") |
||||||
|
private Integer differenceNum; |
||||||
|
/** |
||||||
|
* 托盘码 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("托盘码") |
||||||
|
private String trayCode; |
||||||
|
|
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("货区-货架-货位") |
||||||
|
private String positionCode; |
||||||
|
|
||||||
|
/** |
||||||
|
* 更新的货物信息 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("更新的货位") |
||||||
|
private String groundingPositionCode; |
||||||
|
/** |
||||||
|
* 货物状态 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("货物状态") |
||||||
|
private String questStatusName; |
||||||
|
|
||||||
|
|
||||||
|
} |
Loading…
Reference in new issue