| | |
| | | private String productName; |
| | | private String model; |
| | | private String unit; |
| | | private String batchNo; |
| | | |
| | | |
| | | //入库类型 |
| | |
| | | |
| | | @Schema(description = "不合格库存ID") |
| | | private Long unQualifiedId; |
| | | |
| | | @Schema(description = "产品id") |
| | | private Long productId; |
| | | |
| | | @Schema(description = "被领用数量(未归还)") |
| | | private BigDecimal borrowedQuantity; |
| | | |
| | | @Schema(description = "可领用数量(库存 - 被领用)") |
| | | private BigDecimal availableQuantity; |
| | | |
| | | @Schema(description = "产品编码") |
| | | private String productCode; |
| | | |
| | | @Schema(description = "审批状态(用于入库/出库记录)") |
| | | private Integer approvalStatus; |
| | | } |