| | |
| | | @Schema(description = "备注") |
| | | private String remark; |
| | | |
| | | @Schema(description = "类型 0合格入库 1不合格入库") |
| | | @Schema(description = "预警数量") |
| | | private BigDecimal warnNum; |
| | | |
| | | @Schema(description = "类型 0合格入库 1不合格入库 2废品入库") |
| | | private String type; |
| | | |
| | | @Schema(description = "创建时间") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private LocalDateTime createTime; |
| | |
| | | |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long deptId; |
| | | |
| | | @Schema(description = "厂家ID") |
| | | private Long manufacturerId; |
| | | |
| | | @Schema(description = "来源") |
| | | private String source; |
| | | |
| | | @Schema(description = "是否含水") |
| | | private Boolean isContainsWater; |
| | | |
| | | @Schema(description = "含水量") |
| | | private BigDecimal waterContent; |
| | | |
| | | @Schema(description = "理论入库数量") |
| | | private BigDecimal theoryStockInNum; |
| | | |
| | | @TableField(exist = false) |
| | | @Schema(description = "差额(理论入库数量-实际入库数量)") |
| | | private BigDecimal differenceNum; |
| | | } |