fhx
2023-09-26 c20b43c1aa93f404188fde97b03c116bb8499752
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package com.hz.his.dto.report;
 
 
import com.hz.his.dto.PageDto;
import lombok.Data;
 
import java.util.List;
 
/**
 * 咨询师报表扩展
 * @author fwq
 * */
@Data
public class UserReleaseDto extends PageDto {
    /**员工标识*/
    private String employeeId;
    /**当前时间*/
    private String nowTime;
    /**顶部咨询师列表*/
    private List<String> topEmployeeIdList;
    /**咨询师列表*/
    private List<String> employeeIdList;
    /**等级列表*/
    private List<String> memberLevelList;
    /** 是否过滤测试用户账号 */
    private Integer isFilterTestAccount;
 
}