TWW
2025-08-08 81aa0cb2a8f563075eef1d4101024c3fd9cb2205
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
package com.ruoyi.personnelManagement.pojo;
 
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import com.ruoyi.framework.web.domain.BaseEntity;
import lombok.Data;
 
 
/**
 * 考勤记录对象 attendance
 * 
 * @author ruoyi
 * @date 2025-08-08
 */
@Data
public class Attendance extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** 考勤ID */
    private Long id;
 
    /** 员工ID */
    @Excel(name = "员工ID")
    private Long employeeId;
 
    /** 员工姓名 */
    @Excel(name = "员工姓名")
    private String employeeName;
 
    /** 工号 */
    @Excel(name = "工号")
    private String employeeNo;
 
    /** 月份 yyyy-MM */
    @Excel(name = "月份 yyyy-MM")
    private String month;
 
    /** 应出勤天数 */
    @Excel(name = "应出勤天数")
    private Long shouldAttendDays;
 
    /** 实际出勤天数 */
    @Excel(name = "实际出勤天数")
    private Long actualAttendDays;
 
    /** 考勤状态(normal正常 abnormal异常) */
    @Excel(name = "考勤状态", readConverterExp = "n=ormal正常,a=bnormal异常")
    private String status;
 
    /** 租户ID */
    @Excel(name = "租户ID")
    private Long tenantId;
 
 
 
}