RuleScheduling.java
3.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
package com.ruoyi.scheduling.domain;
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
import org.springframework.format.annotation.DateTimeFormat;
/**
* 排班规则对象 rule_scheduling
*
* @author guzijian
* @date 2023-08-07
*/
@Data
public class RuleScheduling extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** 主键 */
private Long id;
/** 规则名称 */
@Excel(name = "规则名称")
private String ruleName;
/** 工时制 */
@Excel(name = "工时制")
private Integer workingHourPlan;
/** 工时类型 */
@Excel(name = "工时类型")
private Integer workingHourType;
/** 第一段上班签到时间 */
@JsonFormat(pattern = "HH:mm")
@Excel(name = "第一段上班签到时间", width = 30, dateFormat = "HH:mm")
@DateTimeFormat(pattern = "HH:mm")
private Date firstWorkSignInTime;
/** 第一段上班打卡签到范围 */
@Excel(name = "第一段上班打卡签到范围")
private Integer firstSignInWorkingRange;
/** 第一段下班签退时间 */
@JsonFormat(pattern = "HH:mm")
@Excel(name = "第一段下班签退时间", width = 30, dateFormat = "HH:mm")
@DateTimeFormat(pattern = "HH:mm")
private Date firstQuittingSignInTime;
/** 第一段上下班标识,今天时间还是隔天 */
@Excel(name = "第一段上下班标识,今天时间还是隔天")
private Integer firstSignInDayTomorrow;
/** 第一段下班签退签到范围 */
@Excel(name = "第一段下班签退签到范围")
private Integer firstSignInQuittingRange;
/** 超时范围允许 */
@Excel(name = "超时范围允许")
private Integer signInTimeOutRange;
/** 第二段开启标识 1默认1 未开启 2 开启 */
@Excel(name = "第二段开启标识 1默认1 未开启 2 开启")
private Integer secondFlag;
/** 第二段上班签到时间 */
@JsonFormat(pattern = "HH:mm")
@Excel(name = "第二段上班签到时间", width = 30, dateFormat = "HH:mm")
@DateTimeFormat(pattern = "HH:mm")
private Date secondWorkSignInTime;
/** 第二段上班打卡范围 */
@Excel(name = "第二段上班打卡范围")
private Integer secondSignInWorkingRange;
/** 第二段下班签到签退 */
@JsonFormat(pattern = "HH:mm")
@Excel(name = "第二段下班签到签退", width = 30, dateFormat = "HH:mm")
@DateTimeFormat(pattern = "HH:mm")
private Date secondQuittingSignInTime;
/** 第二段下班打卡范围 */
@Excel(name = "第二段下班打卡范围")
private Integer secondSignInQuittingRange;
/** 第二段上下班标识,今天时间还是隔天 */
@Excel(name = "第二段上下班标识,今天时间还是隔天")
private Integer secondSignDayTomorrow;
private Date updateTime;
private Date createTime;
private String updateBy;
private String createBy;
}