1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| package com.ycl.platform.domain.dto;
|
| import com.baomidou.mybatisplus.annotation.TableField;
| import lombok.Data;
|
| import java.util.List;
|
| @Data
| public class CheckResultExportDTO {
| private String date;
| /** 时间范围 */
| private List<String> quarter;
| /** 积分id 用于详情页导出*/
| private Long id;
| /** 部门id 用于详情页导出*/
| private Long deptId;
|
| /** 部门ids 用于卡片页导出 */
| private List<Integer> deptIds;
| /** 考核标签0/1 省厅/市局 用于卡片页导出 */
| private List<Integer> examineTags;
| /** 是否需要平均值 用于卡片页导出 */
| private Boolean average;
| }
|
|