| | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.util.List; |
| | | |
| | | @Data |
| | | @ApiModel(value="可研、可行、工艺开发工具、验证发布报告管理查询参数query") |
| | | @ApiModel(value="(可研、可行、工艺开发工具、验证发布报告管理)、(课题评定列表)查询参数query") |
| | | public class TFeasibilityStudyReportQuery extends TimeRangeQueryBody { |
| | | |
| | | @ApiModelProperty(value = "项目组名称") |
| | |
| | | @ApiModelProperty(value = "类型 1=可研报告 2=可行报告 3=工艺开发工具 4=验证与发布") |
| | | private Integer reportType; |
| | | |
| | | @ApiModelProperty(value = "提交人") |
| | | private String createBy; |
| | | |
| | | @ApiModelProperty(value = "状态 -1=草稿箱 1=待审核 2=待评定 3=已评定 4=已驳回 5=已撤回") |
| | | private Integer status; |
| | | |
| | | @ApiModelProperty(value = "项目组id集合 前端忽略") |
| | | private List<String> teamIds; |
| | | |
| | | } |