zouyu
6 天以前 dc7300e21fe53f74e08eb2fa494a83430e2e54ca
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
package com.ruoyi.inspect.vo;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
 
import java.time.LocalDateTime;
 
@Data
public class StaffAttendanceVO {
 
    /**
     * 上班数据主键id
     */
    private Long workDataId;
 
    /**
     * 下班数据主键id
     */
    private Long offWorkDataId;
 
    /**
     * 人员编号
     */
    private String personCode;
 
    /**
     * 人员名称
     */
    private String personName;
 
    /**
     *部门名称
     */
    private String deptName;
 
    /**
     *班次id
     */
    private String shiftId;
 
    /**
     *考勤结果
     */
    private Integer result;
 
    /**
     *考勤时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd")
    private LocalDateTime swingDate;
 
    /**
     *上班时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private LocalDateTime workDateTime;
 
    /**
     *下班时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private LocalDateTime offWorkDateTime;
 
    /**
     *上班打卡状态(0:正常,1:异常)
     */
    private Integer workClockInState;
 
    /**
     *下班打卡状态(0:正常,1:异常)
     */
    private Integer offClockInState;
 
    /**
     * 应勤时长
     */
    private Double plannedWorkHours;
 
    /**
     * 实际时长
     */
    private Double actualWorkHours;
 
    /**
     * 缺勤时长
     */
    private Double absenceWorkHours;
 
    /**
     * 是否为同步数据
     */
    private Integer isSync;
 
    private Integer createUser;
 
    private LocalDateTime createTime;
 
    private Integer updateUser;
 
    private LocalDateTime updateTime;
 
 
}