| | |
| | | */ |
| | | @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; |