| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- package com.usky.eg.domain;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableName;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- import java.io.Serializable;
- import java.time.LocalDateTime;
- /**
- * <p>
- * 人员信息表
- * </p>
- *
- * @author zyj
- * @since 2024-11-27
- */
- @Data
- @EqualsAndHashCode(callSuper = false)
- @TableName("sys_person")
- public class SysPerson implements Serializable {
- private static final long serialVersionUID = 1L;
- @TableId(value = "id", type = IdType.AUTO)
- private Integer id;
- /** 姓名 */
- private String fullName;
- /** 年龄 */
- private Integer age;
- /** 性别;1男、2女 */
- private Integer gender;
- /** 家庭住址 */
- private String address;
- /** 文化程度 */
- private Integer educationDegree;
- /** 身份证号 */
- private String idNumber;
- /** 联系方式 */
- private String linkPhone;
- /** 岗位ID */
- private Long postId;
- /** 部门ID */
- private Long deptId;
- /** 入职时间 */
- private LocalDateTime entryTime;
- /** 证书1 */
- private String certificateUrl1;
- /** 证书2 */
- private String certificateUrl2;
- /** 证书3 */
- private String certificateUrl3;
- /** 创建人 */
- private String creator;
- /** 创建时间 */
- private LocalDateTime createTime;
- /** 更新人 */
- private String updatePerson;
- /** 更新时间 */
- private LocalDateTime updateTime;
- /** 图片数据(base64编码) */
- private String faceBase;
- /** 验证次数(默认0) */
- private Integer vefNum;
- /** 人脸名称 */
- private String faceName;
- /** 人脸备注 */
- private String remark;
- /** 人脸状态(0=可用,1=不可用) */
- private Byte faceStatus;
- /** 卡号 */
- private String cardNum;
- }
|