| | |
| | | */ |
| | | @Data |
| | | @EqualsAndHashCode(callSuper = false) |
| | | @ApiModel(value="RawMaterial对象", description="") |
| | | @ApiModel(value = "RawMaterial对象", description = "") |
| | | public class RawMaterial implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | |
| | | |
| | | @ApiModelProperty(value = "报检日期") |
| | | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
| | | private LocalDateTime inspectionDate; |
| | | private Date inspectionDate; |
| | | |
| | | @ApiModelProperty(value = "检验人") |
| | | private String surveyor; |
| | | |
| | | @ApiModelProperty(value = "检验日期") |
| | | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
| | | private LocalDateTime dateSurvey; |
| | | private Date dateSurvey; |
| | | |
| | | @ApiModelProperty(value = "状态0:待检测;1:已检测") |
| | | private Integer condition; |
| | | private Integer type; |
| | | |
| | | // @TableLogic(value = "1", delval = "0") |
| | | // @TableLogic(value = "1", delval = "0") |
| | | @ApiModelProperty(value = "逻辑删除 正常>=1,删除<=0", hidden = true) |
| | | private Integer state; |
| | | |
| | |
| | | private Date createTime; |
| | | |
| | | @TableField(fill = FieldFill.INSERT_UPDATE) |
| | | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
| | | @ApiModelProperty(value = "更新时间", hidden = true) |
| | | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
| | | private Date updateTime; |
| | | |
| | | @ApiModelProperty(value = "乐观锁", hidden = true) |