智慧保安后台管理-外网项目备份
Administrator
2022-02-28 a68635122d38320f12cad35af7845ac9fb34427c
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
 
package org.springblade.modules.attendance.entity;
 
import com.baomidou.mybatisplus.annotation.*;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * 考勤打卡实体类
 *
 * @author zhongrj
 * @since 2022-02-28
 */
@Data
@TableName("sys_attendance")
@ApiModel(value = "Attendance对象", description = "Attendance对象")
public class Attendance implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    /**
    * 姓名
    */
    private String name;
    /**
    * 编号
    */
    private String number;
 
    /**
    * 部门
    */
    private String department;
 
    /**
    * 天气
    */
    private String weather;
 
 
    /**
    * 打卡时间
    */
    private String clockTime;
    /**
    * 经度
    */
    private String jd;
 
    /**
    * 纬度
    */
    private String wd;
 
    /**
    * 打卡类型 0:上班 1:下班
    */
    private String clocktype;
 
    /**
    * 考勤类型 0:正常 1:迟到 2:早退 3:外勤
    */
    private String attendancetype;
 
 
    private String week;
 
    private String address;
 
    @TableLogic
    private Integer isDeleted;
 
}