| | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Integer id; |
| | | private Long id; |
| | | |
| | | @ApiModelProperty("入库批次") |
| | | private String outboundBatches; |
| | |
| | | |
| | | @ApiModelProperty(value = "类型 0合格入库 1不合格入库") |
| | | private String type; |
| | | |
| | | @ApiModelProperty("过磅日期") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private LocalDateTime weighingDate; |
| | | |
| | | @ApiModelProperty("净重") |
| | | private BigDecimal netWeight; |
| | | |
| | | @ApiModelProperty("车牌号") |
| | | private String licensePlateNo; |
| | | |
| | | @ApiModelProperty("毛重") |
| | | private BigDecimal grossWeight; |
| | | |
| | | @ApiModelProperty("皮重") |
| | | private BigDecimal tareWeight; |
| | | |
| | | @ApiModelProperty("过磅员") |
| | | private String weighingOperator; |
| | | |
| | | @ApiModelProperty("产品id") |
| | | private Long productId; |
| | | } |