| | |
| | | @ExcelProperty("批次号") |
| | | private String batchCode; |
| | | |
| | | @Schema(description = "当前袋码数量", example = "10") |
| | | private Long bagCount; |
| | | |
| | | @Schema(description = "是否存在袋码明细", example = "true") |
| | | private Boolean bagDetailSupported; |
| | | |
| | | @Schema(description = "仓库编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1") |
| | | private Long warehouseId; |
| | | |
| | |
| | | @ExcelProperty("入库时间") |
| | | private LocalDateTime receiptTime; |
| | | |
| | | @Schema(description = "库存状态:10-暂存库,20-合格库,30-已出库", example = "20") |
| | | @ExcelProperty("库存状态") |
| | | private Integer stockState; |
| | | |
| | | @Schema(description = "是否冻结", requiredMode = Schema.RequiredMode.REQUIRED, example = "false") |
| | | @ExcelProperty("是否冻结") |
| | | private Boolean frozen; |