提交 | 用户 | age
|
a499bd
|
1 |
package com.hz.his.dto.report; |
F |
2 |
|
|
3 |
import lombok.Data; |
|
4 |
|
|
5 |
import java.util.List; |
|
6 |
|
|
7 |
/** |
|
8 |
* 咨询师报表扩展 |
|
9 |
* @author fwq |
|
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; |
|
27 |
/**会员等级*/ |
|
28 |
private List<String> userLevelList; |
|
29 |
/**会员状态*/ |
|
30 |
private List<String> userStatusList; |
|
31 |
/**增长中心映射项目*/ |
|
32 |
private List<String> upProjectIdList; |
a499bd
|
33 |
|
F |
34 |
} |