| | |
| | | @ColumnWidth(30) |
| | | private String palletCode; |
| | | |
| | | @Schema(description = "品种编号", example = "1") |
| | | @ExcelIgnore |
| | | private Long itemId; |
| | | |
| | | @Schema(description = "品种编码") |
| | | @ExcelProperty("品种编码") |
| | | @ColumnWidth(20) |
| | | private String itemCode; |
| | | |
| | | @Schema(description = "品种名称") |
| | | @ExcelProperty("品种名称") |
| | | @ColumnWidth(20) |
| | | private String itemName; |
| | | |
| | | @Schema(description = "状态(字典 mes_pro_bag_code_status)", example = "10") |
| | | @ExcelProperty(value = "状态", converter = DictConvert.class) |
| | | @DictFormat(DictTypeConstants.MES_PRO_BAG_CODE_STATUS) |
| | |
| | | @ColumnWidth(20) |
| | | private LocalDateTime printTime; |
| | | |
| | | @Schema(description = "作废时间") |
| | | @ExcelIgnore |
| | | private LocalDateTime cancelTime; |
| | | |
| | | @Schema(description = "作废原因") |
| | | @ExcelIgnore |
| | | private String cancelReason; |
| | | |
| | | @Schema(description = "备注") |
| | | @ExcelIgnore |
| | | private String remark; |