| | |
| | | import lombok.Data; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.io.Serial; |
| | | import java.io.Serializable; |
| | | import java.math.BigDecimal; |
| | | import java.time.LocalDateTime; |
| | | |
| | | @Data |
| | | @TableName("stock_in_record") |
| | | @Schema(name = "入库管理") |
| | | public class StockInRecord { |
| | | public class StockInRecord implements Serializable { |
| | | |
| | | @Serial |
| | | private static final long serialVersionUID = 1L; |
| | | /** |
| | | * 序号 |
| | |
| | | private String remark; |
| | | |
| | | @Schema(description = "预警数量") |
| | | @TableField(exist = false) |
| | | private BigDecimal warnNum; |
| | | |
| | | @Schema(description = "类型 0合格入库 1不合格入库") |