提交 | 用户 | age
|
a499bd
|
1 |
package com.hz.his.dto.report; |
F |
2 |
|
|
3 |
import lombok.Data; |
|
4 |
|
|
5 |
import java.util.List; |
|
6 |
|
|
7 |
/** |
e957c9
|
8 |
* 用户报表扩展 |
a499bd
|
9 |
* @author fwq |
F |
10 |
* */ |
|
11 |
@Data |
|
12 |
public class UserReportDto { |
c33acd
|
13 |
/**过滤测试账号*/ |
F |
14 |
private Integer isFilterTestAccount; |
a499bd
|
15 |
/**员工标识*/ |
F |
16 |
private String userId; |
|
17 |
/**开始时间*/ |
|
18 |
private String startTime; |
|
19 |
/**结束时间*/ |
|
20 |
private String endTime; |
c1b4b4
|
21 |
/**门店标识*/ |
F |
22 |
private List<String> shopIdList; |
c33acd
|
23 |
/**科室标识*/ |
F |
24 |
private List<String> roomList; |
|
25 |
/**医生标识*/ |
|
26 |
private List<String> doctorIdList; |
e957c9
|
27 |
/**注射科医生标识*/ |
F |
28 |
private List<String> zskDoctorIdList; |
|
29 |
/**皮肤科医生标识*/ |
|
30 |
private List<String> pfkDoctorIdList; |
c33acd
|
31 |
/**会员等级*/ |
F |
32 |
private List<String> userLevelList; |
|
33 |
/**会员状态*/ |
|
34 |
private List<String> userStatusList; |
|
35 |
/**增长中心映射项目*/ |
|
36 |
private List<String> upProjectIdList; |
b6833a
|
37 |
/**顾问标识*/ |
F |
38 |
private List<String> adviserIdList; |
e957c9
|
39 |
/**标签*/ |
F |
40 |
private List<String> tagNameList; |
|
41 |
/**执行频次,1,2,3(-1为多次)*/ |
|
42 |
private Integer deductionNum; |
a499bd
|
43 |
} |