| package doumeemes.dao.ext.dto; | 
|   | 
| import com.fasterxml.jackson.annotation.JsonFormat; | 
| import doumeemes.core.annotation.excel.ExcelColumn; | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| import java.util.Date; | 
| import java.util.List; | 
|   | 
| /** | 
|  * @author 江蹄蹄 | 
|  * @date 2022/04/20 10:56 | 
|  */ | 
| @Data | 
| @ApiModel("员工绩效分页查询请求参数") | 
| public class QueryUserSalaryListDTO { | 
|     @ApiModelProperty(value = "生产人员编码", example = "1") | 
|     private Integer userId; | 
|     @ApiModelProperty(value = "工序编码", example = "1") | 
|     private Integer procedureId; | 
|     @ApiModelProperty(value = "物料编码", example = "1") | 
|     private Integer materialId; | 
|     @ApiModelProperty(value = "物料名称或物料code编码" ) | 
|     private String materialName; | 
|     @ApiModelProperty(value = "根组织编码", example = "1",hidden = true) | 
|     private Integer rootDepartId; | 
|     @ApiModelProperty(value = "开始时间") | 
|     @JsonFormat(pattern = "yyyy-MM-dd") | 
|     private String startDate; | 
|     @ApiModelProperty(value = "结束时间") | 
|     @JsonFormat(pattern = "yyyy-MM-dd") | 
|     private String endDate; | 
|     @ApiModelProperty(value = "数据权限部门编码集合" ,hidden = true) | 
|     private List<Integer> departIds; | 
|   | 
| } |