| | |
| | | */ |
| | | @Data |
| | | @EqualsAndHashCode(callSuper = false) |
| | | @ApiModel(value="InspectionReport对象", description="") |
| | | @TableName("inspection_report") |
| | | @ApiModel(value="Report对象", description="") |
| | | @TableName("report") |
| | | public class Report implements Serializable { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | |
| | | @ApiModelProperty(value = "审核结论") |
| | | private String conclusion; |
| | | |
| | | @ApiModelProperty(value = "审核人id") |
| | | private Integer userId; |
| | | @ApiModelProperty(value = "审核人") |
| | | private String approver; |
| | | |
| | | @ApiModelProperty(value = "关联 申请表id") |
| | | private Integer inspectionId; |
| | | |
| | | @ApiModelProperty(value = "审核时间", hidden = true) |
| | | @JsonFormat(pattern = "yyyy-MM-dd ", timezone = "GMT+8") |
| | | private Date checkTime; |
| | | |
| | | @TableField(fill = FieldFill.INSERT) |
| | | @ApiModelProperty(value = "创建时间", hidden = true) |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | @JsonFormat(pattern = "yyyy-MM-dd ", timezone = "GMT+8") |
| | | private Date createTime; |
| | | |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | @JsonFormat(pattern = "yyyy-MM-dd ", timezone = "GMT+8") |
| | | @TableField(fill = FieldFill.INSERT_UPDATE) |
| | | private Date updateTime; |
| | | |
| | | @ApiModelProperty(value = "逻辑删除 正常>=1,删除<=0", hidden = true) |
| | | private Integer state; |
| | | |
| | | } |
| | | |