fwq
2023-07-05 c91e5eeb2ce66cc729d0649de55943c57c88b4ff
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 EmployeeReportDto {
    /**员工标识*/
    private String employeeId;
    /**门店标识*/
    private String shopId;
    private String shopIds;
    /**登录员工唯一字符串*/
    private String roleStr;
    /**员工标识集合*/
    private List<String> employeeIdList;
    /**门店标识集合*/
    private List<String> shopIdList;
    /**当前时间*/
    private String nowTime;
    /**开始时间*/
    private String startTime;
    /**结束时间*/
    private String endTime;
    /**类型*/
    private Integer type;
}