fhx
2024-04-11 8aabd6f9a44fb4de7ef2c70ff0a15fc000f4b5d9
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
29
30
31
32
package com.hz.his.dto.report;
 
import lombok.Data;
 
import java.util.List;
 
/**
 * 用户报表扩展
 * @author fwq
 * */
@Data
public class UserDetailReportDto {
    /**映射模块*/
    private Integer moduleType;
    /**过滤测试账号*/
    private Integer isFilterTestAccount;
 
    /**开始时间*/
    private String startTime;
    /**结束时间*/
    private String endTime;
 
    /**门店标识*/
    private List<String> shopIdList;
    /**门店编号*/
    private List<String> shopNoList;
    /**顾问标识*/
    private List<String> adviserIdList;
    /**顾问编号*/
    private List<String> adviserNoList;
 
}