| | |
| | | @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 BigDecimal grossWeight; |
| | | |
| | | /** |
| | | * 皮重(单位:吨) |
| | | */ |
| | | @ApiModelProperty("皮重") |
| | | private BigDecimal tareWeight; |
| | | |
| | | /** |
| | | * 车牌号 |
| | | */ |
| | | @ApiModelProperty("车牌号") |
| | | private String licensePlateNo; |
| | | |
| | | /** |
| | | * 过磅员 |
| | | */ |
| | | @ApiModelProperty("过磅员") |
| | | private String weighingOperator; |
| | | |
| | | @ApiModelProperty("磅单文件路径") |
| | | private String weighbridgeDocPath; |
| | | |
| | | @ApiModelProperty("产品id") |
| | | private Long productId; |
| | | } |