| | |
| | | @ExcelProperty("在库数量") |
| | | private BigDecimal quantity; |
| | | |
| | | @Schema(description = "冻结数量", example = "10.0000") |
| | | @ExcelProperty("冻结数量") |
| | | private BigDecimal frozenQuantity; |
| | | |
| | | @Schema(description = "占用量(已分配待出库)", example = "20.0000") |
| | | @ExcelProperty("占用量") |
| | | private BigDecimal reservedQuantity; |
| | | |
| | | @Schema(description = "在途量(调拨在途)", example = "5.0000") |
| | | @ExcelProperty("在途量") |
| | | private BigDecimal inTransitQuantity; |
| | | |
| | | @Schema(description = "可用量(在库数量 - 冻结数量 - 占用量)", example = "70.0000") |
| | | @ExcelProperty("可用量") |
| | | private BigDecimal availableQuantity; |
| | | |
| | | @Schema(description = "入库时间") |
| | | @ExcelProperty("入库时间") |
| | | private LocalDateTime receiptTime; |