| | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ycl.system.domain.base.AbsQuery; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | |
| | | private String projectName; |
| | | //项目代码 |
| | | private String projectCode; |
| | | //建设性质 |
| | | private String constructionNature; |
| | | //项目类型 |
| | | private String projectType; |
| | | //重点分类 |
| | |
| | | private String investType; |
| | | //行政区划 |
| | | private String area; |
| | | |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date projectStartTime; |
| | | |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date projectEndTime; |
| | | |
| | | //从有没有流程判断是存储还是早期 |
| | | private String reserveOrPrevious; |
| | | |
| | | private Integer role;// 业主:0,审核:1 |
| | | |
| | | //查询条件业主单位 |
| | | private Long projectOwnerUnit; |
| | | |
| | | private Integer usedStatus; |
| | | |
| | | //查询条件主管部门 |
| | | private Long competentDepartment; |
| | | |
| | | @ApiModelProperty("项目码") |
| | | private String coding; |
| | | |
| | | @ApiModelProperty("是否是异常项目查询:0 不是 1是") |
| | | private Integer exe; |
| | | |
| | | @ApiModelProperty("是否是项目中心查询:0 不是 1是") |
| | | private Integer center; |
| | | } |
| | | |