fwq
2023-08-21 96311be2fbd804ac8f732c697f44111062190693
提交 | 用户 | age
8f8549 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 EmployeeReportDto {
13     /**员工标识*/
14     private String employeeId;
75c8cf 15     /**门店标识*/
F 16     private String shopId;
c91e5e 17     private String shopIds;
75c8cf 18     /**登录员工唯一字符串*/
F 19     private String roleStr;
8f8549 20     /**员工标识集合*/
F 21     private List<String> employeeIdList;
22     /**门店标识集合*/
23     private List<String> shopIdList;
24     /**当前时间*/
25     private String nowTime;
26     /**开始时间*/
27     private String startTime;
28     /**结束时间*/
29     private String endTime;
827939 30     /**类型*/
F 31     private Integer type;
891912 32     /**是否新会员*/
F 33     private Integer isNewUser;
34     /**是否首天*/
35     private Integer isBothOne;
96311b 36     /**工作日*/
F 37     private Integer workDayNum;
8f8549 38 }