| | |
| | | package com.ruoyi.system.query; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.ruoyi.common.core.domain.BasePage; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | |
| | | public class ProjectPhaseListQuery extends BasePage { |
| | | |
| | | |
| | | @ApiModelProperty(value = "项目名称") |
| | | private Integer status; |
| | | @ApiModelProperty(value = "项目id") |
| | | private String projectId; |
| | | @ApiModelProperty(value = "事项标题") |
| | | private String settleName; |
| | | @ApiModelProperty(value = "所属项目阶段 1前期2实施3验收4运营") |
| | | private Integer stage; |
| | | @ApiModelProperty(value = "事项类型 1项目事项 2款项记录") |
| | | private Integer settleType; |
| | | |
| | | } |