| | |
| | | @TableField("hazmat_character") |
| | | private String hazmatCharacter; |
| | | |
| | | @NotBlank(message = "供应商不能为空") |
| | | @ApiModelProperty(value = "供应商",required = true) |
| | | |
| | | @ApiModelProperty(value = "供应商") |
| | | @TableField("supplier") |
| | | private String supplier; |
| | | |
| | | @NotBlank(message = "厂家不能为空") |
| | | @ApiModelProperty(value = "厂家",required = true) |
| | | |
| | | @ApiModelProperty(value = "厂家") |
| | | @TableField("manufacturer") |
| | | private String manufacturer; |
| | | |
| | |
| | | @TableField("unit") |
| | | private String unit; |
| | | |
| | | @NotNull(message = "含税价格不能为空") |
| | | @ApiModelProperty(value = "含税价格",required = true) |
| | | |
| | | @ApiModelProperty(value = "含税价格") |
| | | @TableField("price") |
| | | private BigDecimal price; |
| | | |