|
|
|
|
|
|
|
|
@TableId(value = "id", type = IdType.AUTO) |
|
|
@TableId(value = "id", type = IdType.AUTO) |
|
|
private String id; |
|
|
private String id; |
|
|
|
|
|
|
|
|
|
|
|
// 用户id |
|
|
@TableField(value = "`sys_user_id`") |
|
|
@TableField(value = "`sys_user_id`") |
|
|
private Long sysUserId; |
|
|
private Long sysUserId; |
|
|
|
|
|
|
|
|
|
|
|
// 用户姓名 |
|
|
@TableField(value = "`sys_user_name`") |
|
|
@TableField(value = "`sys_user_name`") |
|
|
private String sysUserName; |
|
|
private String sysUserName; |
|
|
|
|
|
|
|
|
|
|
|
// 打卡时间 |
|
|
@TableField(value = "`check_in_time`") |
|
|
@TableField(value = "`check_in_time`") |
|
|
private LocalDateTime checkInTime; |
|
|
private LocalDateTime checkInTime; |
|
|
|
|
|
|
|
|
|
|
|
// 纬度 |
|
|
@TableField(value = "`latitude`") |
|
|
@TableField(value = "`latitude`") |
|
|
private String latitude; |
|
|
private String latitude; |
|
|
|
|
|
|
|
|
|
|
|
//经度 |
|
|
@TableField(value = "`longitude`") |
|
|
@TableField(value = "`longitude`") |
|
|
private String longitude; |
|
|
private String longitude; |
|
|
|
|
|
|
|
|
|
|
|
// 打卡状态 |
|
|
@TableField(value = "`check_in_status`") |
|
|
@TableField(value = "`check_in_status`") |
|
|
private String checkInStatus; |
|
|
private String checkInStatus; |
|
|
|
|
|
|
|
|
|
|
|
// 打卡类型 |
|
|
@TableField(value = "`check_in_type`") |
|
|
@TableField(value = "`check_in_type`") |
|
|
private String checkInType; |
|
|
private String checkInType; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@TableField(value = "`clock_out`") |
|
|
@TableField(value = "`clock_out`") |
|
|
private LocalDateTime clockOut; |
|
|
private LocalDateTime clockOut; |
|
|
|
|
|
|
|
|
|
|
|
// 打卡月 |
|
|
@TableField(value = "`month`") |
|
|
@TableField(value = "`month`") |
|
|
private int month; |
|
|
private int month; |
|
|
|
|
|
|
|
|
|
|
|
// 打卡周 |
|
|
@TableField(value = "`week`") |
|
|
@TableField(value = "`week`") |
|
|
private String week; |
|
|
private String week; |
|
|
|
|
|
|
|
|
|
|
|
// 打卡日 |
|
|
@TableField(value = "`day`") |
|
|
@TableField(value = "`day`") |
|
|
private int day; |
|
|
private int day; |
|
|
|
|
|
|
|
|
// 描述 |
|
|
// 描述 |
|
|
@TableField(value = "`description`") |
|
|
@TableField(value = "`description`") |
|
|
private String description; |
|
|
private String description; |