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; }