RuleAttendanceMain.java
2.14 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
package com.ruoyi.domain;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import java.util.Date;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
/**
* 考勤表
* @author 20412
* @TableName rule_attendance_main
*/
@TableName(value ="rule_attendance_main")
@Data
public class RuleAttendanceMain implements Serializable {
/**
* 主键
*/
@TableId(type = IdType.AUTO)
private Integer id;
/**
* 姓名
*/
private String name;
/**
* 工号
*/
private String jobCode;
/**
* 工时制
*/
private Integer workingHourPlan;
/**
* 工时类型
*/
private Integer workingHourType;
/**
* 第一段上班签到时间
*/
private Date firstWorkSignInTime;
/**
* 第一段上班打卡签到范围
*/
private Integer firstSignInWorkingRange;
/**
* 第一段下班签退时间
*/
private Date firstQuittingSignInTime;
/**
* 第一段下班签退签到范围
*/
private Integer firstSignInQuittingRange;
/**
* 超时范围允许
*/
private Integer signInTimeOutRange;
/**
* 第二段上班签到时间
*/
private Date secondWorkSignInTime;
/**
* 第二段上班打卡范围
*/
private Integer secondSignInWorkingRange;
/**
* 第二段下班签到签退
*/
private Date secondQuittingSignInTime;
/**
* 第二段下班打卡范围
*/
private Integer secondSignInQuittingRange;
/**
* 值班日期
*/
@DateTimeFormat(pattern = "yyyy-MM-dd")
private Date schedulingDate;
/**
* 工作还是休息
*/
private Integer workFlag;
/**
* 工种
*/
private String posts;
/**
* 班型名称
*/
private String ruleDictName;
private String fleetName;
@TableField(exist = false)
private static final long serialVersionUID = 1L;
}