| package com.ruoyi.system.query; | 
|   | 
| import com.ruoyi.common.core.domain.BasePage; | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| @Data | 
| @ApiModel(value = "年度任务列表分页列表query") | 
| public class YearTaskListQuery extends BasePage { | 
|   | 
|   | 
|     @ApiModelProperty(value = "项目名称") | 
|     private String projectName; | 
|     @ApiModelProperty(value = "年度") | 
|     private String year; | 
|   | 
|   | 
| } |