package com.hz.his.dto.employee;
|
|
import lombok.Data;
|
|
/**
|
* 工作人员排班数据
|
*/
|
@Data
|
public class EmployeeSchedule {
|
|
|
private String shopId;
|
|
private String shopName;
|
|
|
private String employeeId;
|
|
private String employeeName;
|
|
private String employeeImgUrl;
|
|
|
private String dayTime;
|
|
|
private String monthTime;
|
|
private String uniqueStr;
|
|
private String operatorId;
|
|
private String operatorName;
|
|
private Integer operatorType;
|
|
private String remark;
|
|
public EmployeeSchedule() {
|
|
}
|
|
/**操作人类型-管理员*/
|
public static Integer OPERATOR_TYPE_ADMIN = 0;
|
/**操作人类型-员工*/
|
public static Integer OPERATOR_TYPE_EMPLOYEE = 1;
|
/**操作人类型-用户*/
|
public static Integer OPERATOR_TYPE_USER = 2;
|
/**操作人类型-系统*/
|
public static Integer OPERATOR_TYPE_SYSTEM = 3;
|
}
|