| | |
| | | private String unit; |
| | | private String materialCode; |
| | | private String productModelName; |
| | | |
| | | //入库类型 |
| | | private String recordType; |
| | | |
| | | //入库类型对应的id |
| | | private Long recordId; |
| | | |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private LocalDate reportDate; |
| | | |
| | | //库存月报查询字段 |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private LocalDate startMonth; |
| | | |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private LocalDate endMonth; |
| | |
| | | private BigDecimal totalStockIn; |
| | | private BigDecimal totalStockOut; |
| | | private BigDecimal currentStock; |
| | | |
| | | private BigDecimal unLockedQuantity; |
| | | |
| | | //产品id |
| | | private Long productId; |
| | | |
| | | @Schema(description = "顶部父产品id") |
| | | @Schema(description = "顶级父级产品ID") |
| | | private Long topParentProductId; |
| | | |
| | | @Schema(description = "库存类型:qualified(合格)、unqualified(不合格)") |
| | | @Schema(description = "库存类型") |
| | | private String stockType; |
| | | |
| | | @Schema(description = "合格库存数量") |
| | |
| | | @Schema(description = "不合格库存数量") |
| | | private BigDecimal unQualifiedQuantity; |
| | | |
| | | @Schema(description = "合格库存冻结数量") |
| | | @Schema(description = "合格冻结数量") |
| | | private BigDecimal qualifiedLockedQuantity; |
| | | |
| | | @Schema(description = "不合格库存冻结数量") |
| | | @Schema(description = "不合格冻结数量") |
| | | private BigDecimal unQualifiedLockedQuantity; |
| | | |
| | | @Schema(description = "合格库存未冻结数量") |
| | | @Schema(description = "合格可用数量") |
| | | private BigDecimal qualifiedUnLockedQuantity; |
| | | |
| | | @Schema(description = "不合格库存未冻结数量") |
| | | @Schema(description = "不合格可用数量") |
| | | private BigDecimal unQualifiedUnLockedQuantity; |
| | | |
| | | @Schema(description = "合格库存ID") |
| | |
| | | @Schema(description = "不合格库存ID") |
| | | private Long unQualifiedId; |
| | | |
| | | @Schema(description = "合格库存批号") |
| | | @Schema(description = "合格批次号") |
| | | private String qualifiedBatchNo; |
| | | |
| | | @Schema(description = "不合格库存批号") |
| | | @Schema(description = "不合格批次号") |
| | | private String unQualifiedBatchNo; |
| | | |
| | | } |