wangrenhuang
2022-10-20 f51e4da0e870c8f4267cb2afd6f72fa79fb179e9
提交 | 用户 | 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
12     private String shopId;
13
14     private String shopName;
15
16
17     private String employeeId;
18
19     private String employeeName;
20
21     private String employeeImgUrl;
22
23
24     private String dayTime;
25
26
27     private String monthTime;
28
29     private String uniqueStr;
30
31     private String operatorId;
32
33     private String operatorName;
34
35     private Integer operatorType;
36
37     private String remark;
38
39     public EmployeeSchedule() {
40
41     }
42
43     /**操作人类型-管理员*/
44     public static Integer OPERATOR_TYPE_ADMIN = 0;
45     /**操作人类型-员工*/
46     public static Integer OPERATOR_TYPE_EMPLOYEE = 1;
47     /**操作人类型-用户*/
48     public static Integer OPERATOR_TYPE_USER = 2;
49     /**操作人类型-系统*/
50     public static Integer OPERATOR_TYPE_SYSTEM = 3;
51 }