| | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | @ApiModelProperty(value = "保管人:用户表关联Id", example = "9", required = true) |
| | | private Integer userId; |
| | | |
| | | @ApiModelProperty(value = "保管人:用户表关联Id", hidden = true) |
| | | private Integer createUserId; |
| | | |
| | | @ApiModelProperty(value = "仪器设备编号", example = "JSTC-W1-00001", required = true) |
| | | private String equipmentCode; |
| | | |
| | |
| | | |
| | | @ApiModelProperty(value = "到货日期", example = "2001-07-06", dataType = "date") |
| | | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | private Date arrivalDate; |
| | | |
| | | @ApiModelProperty(value = "验收日期", example = "2060-07-06", dataType = "date") |
| | | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | private Date acceptanceDate; |
| | | |
| | | @ApiModelProperty(value = "存放地", example = "地球亚洲中国江苏南通") |
| | |
| | | @ApiModelProperty(value = "逻辑删除 正常>=1,删除<=0", hidden = true) |
| | | private Integer state; |
| | | |
| | | @JsonIgnore |
| | | @TableField(fill = FieldFill.INSERT) |
| | | @ApiModelProperty(value = "创建时间", hidden = true) |
| | | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
| | | private Date createTime; |
| | | |
| | | @JsonIgnore |