| | |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonInclude; |
| | | import com.gkhy.assess.common.domain.BaseEntity; |
| | | import com.gkhy.assess.system.domain.vo.PersonRecognitionVO; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Getter; |
| | |
| | | private Long id; |
| | | |
| | | @NotBlank(message = "项目名称不能为空") |
| | | @Length(min=1,max=100,message = "项目名称不能超过{max}字符") |
| | | @ApiModelProperty(value = "项目名称",required = true) |
| | | @TableField("name") |
| | | private String name; |
| | |
| | | @ApiModelProperty("要件数量") |
| | | @TableField(exist = false) |
| | | private Integer materialCnt; |
| | | |
| | | @ApiModelProperty("归档确认总人数和已确认人数") |
| | | @TableField(exist = false) |
| | | private PersonRecognitionVO personRecognition; |
| | | |
| | | @ApiModelProperty("机构名称") |
| | | @TableField(exist = false) |
| | | private String agencyName; |
| | | |
| | | @ApiModelProperty("是否检验检测 0否1是") |
| | | @TableField(exist = false) |
| | | private Integer safetyCheck; |
| | | |
| | | @ApiModelProperty("未完成:1") |
| | | @TableField(exist = false) |
| | | private Integer unFinish; |
| | | } |