SysPerson.java 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. package com.usky.eg.domain;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableId;
  4. import com.baomidou.mybatisplus.annotation.TableName;
  5. import lombok.Data;
  6. import lombok.EqualsAndHashCode;
  7. import java.io.Serializable;
  8. import java.time.LocalDateTime;
  9. /**
  10. * <p>
  11. * 人员信息表
  12. * </p>
  13. *
  14. * @author zyj
  15. * @since 2024-11-27
  16. */
  17. @Data
  18. @EqualsAndHashCode(callSuper = false)
  19. @TableName("sys_person")
  20. public class SysPerson implements Serializable {
  21. private static final long serialVersionUID = 1L;
  22. @TableId(value = "id", type = IdType.AUTO)
  23. private Integer id;
  24. /** 姓名 */
  25. private String fullName;
  26. /** 年龄 */
  27. private Integer age;
  28. /** 性别;1男、2女 */
  29. private Integer gender;
  30. /** 家庭住址 */
  31. private String address;
  32. /** 文化程度 */
  33. private Integer educationDegree;
  34. /** 身份证号 */
  35. private String idNumber;
  36. /** 联系方式 */
  37. private String linkPhone;
  38. /** 岗位ID */
  39. private Long postId;
  40. /** 部门ID */
  41. private Long deptId;
  42. /** 入职时间 */
  43. private LocalDateTime entryTime;
  44. /** 证书1 */
  45. private String certificateUrl1;
  46. /** 证书2 */
  47. private String certificateUrl2;
  48. /** 证书3 */
  49. private String certificateUrl3;
  50. /** 创建人 */
  51. private String creator;
  52. /** 创建时间 */
  53. private LocalDateTime createTime;
  54. /** 更新人 */
  55. private String updatePerson;
  56. /** 更新时间 */
  57. private LocalDateTime updateTime;
  58. /** 图片数据(base64编码) */
  59. private String faceBase;
  60. /** 验证次数(默认0) */
  61. private Integer vefNum;
  62. /** 人脸名称 */
  63. private String faceName;
  64. /** 人脸备注 */
  65. private String remark;
  66. /** 人脸状态(0=可用,1=不可用) */
  67. private Byte faceStatus;
  68. /** 卡号 */
  69. private String cardNum;
  70. }