8 changed files with 189 additions and 3 deletions
@ -0,0 +1,105 @@
|
||||
package com.logpm.warehouse.excel; |
||||
|
||||
import com.alibaba.excel.annotation.ExcelProperty; |
||||
import com.alibaba.excel.annotation.write.style.ColumnWidth; |
||||
import lombok.Data; |
||||
|
||||
import java.io.Serializable; |
||||
import java.util.Date; |
||||
|
||||
@Data |
||||
public class QuestContrastPackageExcelVO implements Serializable { |
||||
|
||||
@ColumnWidth(20) |
||||
@ExcelProperty(value = "订单号") |
||||
private String orderCode; |
||||
|
||||
@ColumnWidth(20) |
||||
@ExcelProperty(value = "运单号") |
||||
private String waybillNumber; |
||||
|
||||
@ColumnWidth(20) |
||||
@ExcelProperty(value = "盘点方式") |
||||
private String questType; |
||||
|
||||
@ColumnWidth(20) |
||||
@ExcelProperty(value = "盘点对象") |
||||
private String questTarget; |
||||
|
||||
@ColumnWidth(20) |
||||
@ExcelProperty(value = "盘点状态") |
||||
private String questStatus; |
||||
|
||||
@ColumnWidth(20) |
||||
@ExcelProperty(value = "包件码") |
||||
private String orderPackageCode; |
||||
|
||||
@ColumnWidth(20) |
||||
@ExcelProperty(value = "品类名称") |
||||
private String categoryName; |
||||
|
||||
@ColumnWidth(20) |
||||
@ExcelProperty(value = "在库数量") |
||||
private Integer stockNum; |
||||
|
||||
@ColumnWidth(20) |
||||
@ExcelProperty(value = "物料编码") |
||||
private String materialCode; |
||||
|
||||
@ColumnWidth(20) |
||||
@ExcelProperty(value = "物料名称") |
||||
private String materialName; |
||||
|
||||
@ColumnWidth(20) |
||||
@ExcelProperty(value = "一级品类") |
||||
private String firsts; |
||||
|
||||
@ColumnWidth(20) |
||||
@ExcelProperty(value = "二级品类") |
||||
private String seconds; |
||||
|
||||
@ColumnWidth(20) |
||||
@ExcelProperty(value = "三级品类") |
||||
private String thirdProduct; |
||||
|
||||
@ColumnWidth(20) |
||||
@ExcelProperty(value = "商场名称") |
||||
private String marketName; |
||||
|
||||
@ColumnWidth(20) |
||||
@ExcelProperty(value = "批次号") |
||||
private String incomingBatch; |
||||
|
||||
@ColumnWidth(20) |
||||
@ExcelProperty(value = "发站仓名称") |
||||
private String sendWarehouseName; |
||||
|
||||
@ColumnWidth(20) |
||||
@ExcelProperty(value = "品牌") |
||||
private String brandName; |
||||
|
||||
@ColumnWidth(20) |
||||
@ExcelProperty(value = "原有托盘") |
||||
private String trayName; |
||||
|
||||
@ColumnWidth(20) |
||||
@ExcelProperty(value = "原有库位") |
||||
private String positionCode; |
||||
|
||||
@ColumnWidth(20) |
||||
@ExcelProperty(value = "新托盘") |
||||
private String newTrayName; |
||||
|
||||
@ColumnWidth(20) |
||||
@ExcelProperty(value = "新库位") |
||||
private String groundingPositionCode; |
||||
|
||||
@ColumnWidth(20) |
||||
@ExcelProperty(value = "盘点时间") |
||||
private Date inventoryTime; |
||||
|
||||
@ColumnWidth(20) |
||||
@ExcelProperty(value = "盘点人") |
||||
private String inventoryUser; |
||||
|
||||
} |
Loading…
Reference in new issue