fwq
2024-04-15 7285f70c4804d88c175ace932956eec524e2ceda
提交 | 用户 | age
f5bce1 1 package com.hz.his.dto.employee;
7c680b 2
C 3 import com.hz.his.dto.PageDto;
4 import lombok.Data;
5
09daf8 6 import java.util.List;
F 7
7c680b 8 /**
C 9  * @author fwq
10  * 员工扩展
11  * */
12 @Data
f5bce1 13 public class EmployeeDto extends PageDto {
7c680b 14     /**修改时间*/
C 15     private String updateTime;
09daf8 16     /**员工企业userId*/
F 17     private String userId;
70b3a9 18     /**角色唯一字符串*/
F 19     private String uniqueStr;
20     /**预约门店标识*/
21     private String shopId;
6785ce 22     /**是否业绩员工(0:否,1:是)*/
W 23     private Integer isPerformanceEmp;
09daf8 24     /**员工角色唯一标识数组*/
F 25     private List<String> roleList;
260658 26     /**员工编号*/
F 27     private String employeeNo;
e80598 28
A 29
30     /**查询类型*/
371962 31     private Integer type;
e80598 32     /**开始时间*/
A 33     private String startTime;
34     /**结束时间*/
35     private String endTime;
7c680b 36 }