| | |
| | | @ColumnWidth(25) |
| | | private String code; |
| | | |
| | | @Schema(description = "品种(产品物料)编号", example = "1") |
| | | @Schema(description = "临时批次码(预生成二维码阶段使用;补录正式信息后为空或保留)", example = "PB-00000001") |
| | | @ExcelIgnore |
| | | private Long itemId; |
| | | |
| | | @Schema(description = "品种编码") |
| | | @ExcelProperty("品种编码") |
| | | private String itemCode; |
| | | |
| | | @Schema(description = "品种名称") |
| | | @ExcelProperty("品种名称") |
| | | private String itemName; |
| | | |
| | | @Schema(description = "品种规格") |
| | | @ExcelProperty("品种规格") |
| | | private String itemSpecification; |
| | | private String tempCode; |
| | | |
| | | @Schema(description = "产线编号", example = "1") |
| | | @ExcelIgnore |
| | | private Long lineId; |
| | | |
| | | @Schema(description = "产线编码", example = "L01") |
| | | @ExcelProperty("产线编码") |
| | | @Schema(description = "产线编码(页面已隐藏,仅接口返回)", example = "L01") |
| | | @ExcelIgnore |
| | | private String lineCode; |
| | | |
| | | @Schema(description = "产线名称", example = "包装一线") |
| | | @ExcelProperty("产线名称") |
| | | @Schema(description = "产线名称(页面展示为「加工单位」)", example = "包装一线") |
| | | @ExcelProperty("加工单位") |
| | | private String lineName; |
| | | |
| | | @Schema(description = "加工班组", example = "一号加工班组") |
| | | @ExcelProperty("加工班组") |
| | | private String processingTeam; |
| | | |
| | | @Schema(description = "生产日期") |
| | | @ExcelProperty("生产日期") |
| | | @ColumnWidth(20) |
| | | private LocalDateTime produceDate; |
| | | |
| | | @Schema(description = "计划数量", example = "1000") |
| | | @ExcelProperty("计划数量") |
| | | @Schema(description = "加工数量(原计划数量,页面展示为「加工数量」)", example = "1000") |
| | | @ExcelProperty("加工数量") |
| | | private BigDecimal planQuantity; |
| | | |
| | | @Schema(description = "责任人用户编号", example = "1") |