|
|
|
|
@ -8,17 +8,20 @@ import java.time.LocalDateTime;
|
|
|
|
|
@Data
|
|
|
|
|
public class StockExportExcel {
|
|
|
|
|
|
|
|
|
|
@ExcelProperty(index = 0, value = "巷道号")
|
|
|
|
|
@ExcelProperty(index = 0, value = "巷道名称")
|
|
|
|
|
private String streetName;
|
|
|
|
|
|
|
|
|
|
@ExcelProperty(index = 4, value = "品规")
|
|
|
|
|
private String category;
|
|
|
|
|
@ExcelProperty(index = 6, value = "盘点批次号")
|
|
|
|
|
private String lotnum;
|
|
|
|
|
|
|
|
|
|
@ExcelProperty(index = 4, value = "条码")
|
|
|
|
|
private String code;
|
|
|
|
|
|
|
|
|
|
@ExcelProperty(index = 1, value = "货架号")
|
|
|
|
|
private String shelveId;
|
|
|
|
|
|
|
|
|
|
@ExcelProperty(index = 5, value = "数量")
|
|
|
|
|
private Integer count;
|
|
|
|
|
// @ExcelProperty(index = 5, value = "数量")
|
|
|
|
|
// private Integer count;
|
|
|
|
|
|
|
|
|
|
@ExcelProperty(index = 2, value = "行")
|
|
|
|
|
private Integer row;
|
|
|
|
|
@ -26,10 +29,10 @@ public class StockExportExcel {
|
|
|
|
|
@ExcelProperty(index = 3, value = "列")
|
|
|
|
|
private Integer column;
|
|
|
|
|
|
|
|
|
|
@ExcelProperty(index = 6, value = "人工复核结果", converter = StockStatusConvert.class)
|
|
|
|
|
@ExcelProperty(index = 5, value = "盘点结果", converter = StockStatusConvert.class)
|
|
|
|
|
private Integer status;
|
|
|
|
|
|
|
|
|
|
@ExcelProperty(index = 7, value = "复核时间", converter = LocalDateTimeConvert.class)
|
|
|
|
|
@ExcelProperty(index = 7, value = "时间", converter = LocalDateTimeConvert.class)
|
|
|
|
|
private LocalDateTime exportTime;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|