| package doumeemes.dao.ext.dto; | 
|   | 
| import com.fasterxml.jackson.annotation.JsonFormat; | 
| import doumeemes.dao.business.dto.MaterialListDTO; | 
| 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 QuerySalaryStatisticDTO { | 
|     @ApiModelProperty(value = "生产人员编码", example = "1") | 
|     private Integer userId; | 
|     @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; | 
|   | 
| } |