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