fwq
2023-11-14 9a9e8d995ea4c95e0303b456cf6fcd4188f97366
提交 | 用户 | age
f51e4d 1 package com.hz.his.dto.employee;
W 2
3 import lombok.Data;
4
5 /**
6  * 工作人员排班数据
7  */
8 @Data
9 public class EmployeeSchedule   {
10
11
f18b2d 12     private String id;
W 13
f51e4d 14     private String shopId;
W 15
16     private String shopName;
17
18
19     private String employeeId;
20
21     private String employeeName;
22
23     private String employeeImgUrl;
24
25
26     private String dayTime;
27
28
29     private String monthTime;
30
31     private String uniqueStr;
32
33     private String operatorId;
34
35     private String operatorName;
36
37     private Integer operatorType;
38
39     private String remark;
40
41     public EmployeeSchedule() {
42
43     }
44
45     /**操作人类型-管理员*/
46     public static Integer OPERATOR_TYPE_ADMIN = 0;
47     /**操作人类型-员工*/
48     public static Integer OPERATOR_TYPE_EMPLOYEE = 1;
49     /**操作人类型-用户*/
50     public static Integer OPERATOR_TYPE_USER = 2;
51     /**操作人类型-系统*/
52     public static Integer OPERATOR_TYPE_SYSTEM = 3;
53 }