/* * Copyright (c) 2018-2028, Chill Zhuang All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * Neither the name of the dreamlu.net developer nor the names of its * contributors may be used to endorse or promote products derived from * this software without specific prior written permission. * Author: Chill 庄骞 (smallchill@163.com) */ 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 BladeX * @since 2021-03-03 */ @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; /** * 姓名 */ @ApiModelProperty(value = "姓名") private String name; /** * 编号 */ @ApiModelProperty(value = "编号") private String number; /** * 部门 */ @ApiModelProperty(value = "部门") private String department; /** * 天气 */ @ApiModelProperty(value = "天气") private String weather; /** * 打卡时间 */ @ApiModelProperty(value = "打卡时间") @TableField("clockTime") private String clockTime; /** * 经度 */ @ApiModelProperty(value = "经度") private String jd; /** * 纬度 */ @ApiModelProperty(value = "纬度") private String wd; /** * 打卡类型 0:上班 1:下班 */ @ApiModelProperty(value = "打卡类型 0:上班 1:下班") @TableField("clockType") private String clocktype; /** * 考勤类型 0:正常 1:迟到 2:早退 3:外勤 */ @ApiModelProperty(value = "考勤类型 0:正常 1:迟到 2:早退 3:外勤") @TableField("attendanceType") private String attendancetype; private String tenantId; private String week; private String address; @TableLogic private Integer isDeleted; }