| | |
| | | private String supplier; |
| | | |
| | | /** |
| | | * 型号id |
| | | */ |
| | | private String specificationId; |
| | | |
| | | /** |
| | | * 规格名称-型号名称 |
| | | **/ |
| | | private String specifications; |
| | |
| | | **/ |
| | | private Integer state; |
| | | |
| | | /** |
| | | * ${column.comment} |
| | | **/ |
| | | |
| | | @TableField(fill = FieldFill.INSERT) |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
| | | private Date createTime; |
| | | |
| | | /** |
| | | * ${column.comment} |
| | | **/ |
| | | |
| | | @TableField(fill = FieldFill.INSERT_UPDATE) |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
| | |
| | | * 关联 申请单id |
| | | **/ |
| | | private Integer inspectionId; |
| | | |
| | | /** |
| | | * 备注 |
| | | */ |
| | | private String notes; |
| | | } |
| | | |