PatrolInspectionPersonnel.java 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. package com.usky.fire.domain;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableId;
  4. import java.time.LocalDate;
  5. import java.time.LocalDateTime;
  6. import java.io.Serializable;
  7. import lombok.Data;
  8. import lombok.EqualsAndHashCode;
  9. import lombok.experimental.Accessors;
  10. /**
  11. * <p>
  12. * 巡检人员表
  13. * </p>
  14. *
  15. * @author JCB
  16. * @since 2022-07-26
  17. */
  18. @Data
  19. @EqualsAndHashCode(callSuper = false)
  20. @Accessors(chain = true)
  21. public class PatrolInspectionPersonnel implements Serializable {
  22. private static final long serialVersionUID=1L;
  23. /**
  24. * 巡检人员表主键ID
  25. */
  26. @TableId(value = "id", type = IdType.AUTO)
  27. private Integer id;
  28. /**
  29. * 用户ID
  30. */
  31. private Integer userId;
  32. /**
  33. * 区域ID
  34. */
  35. private Integer areaId;
  36. /**
  37. * 租户ID
  38. */
  39. private Integer tenantId;
  40. /**
  41. * 创建时间
  42. */
  43. private LocalDateTime createTime;
  44. /**
  45. * 创建人
  46. */
  47. private String creator;
  48. /**
  49. * 使能标识(0 不生效,1 生效)
  50. */
  51. private Integer enable;
  52. /**
  53. * 单位ID
  54. */
  55. private Integer companyId;
  56. /**
  57. * 签到状态(0,签到;1,签退)
  58. */
  59. private Integer operateType;
  60. /**
  61. * 证件信息
  62. */
  63. private String documentInfo;
  64. /**
  65. * 民族
  66. */
  67. private String nation;
  68. /**
  69. * 文化程序(1、小学 2、初中 3、高中 4、大学 5、其他 )
  70. */
  71. private Integer eduLevel;
  72. /**
  73. * 户籍地址
  74. */
  75. private String registerResidence;
  76. /**
  77. * 居住地址
  78. */
  79. private String residence;
  80. /**
  81. * 物理卡号
  82. */
  83. private String physicsCard;
  84. /**
  85. * 身份证号
  86. */
  87. private String idCard;
  88. /**
  89. * 姓名
  90. */
  91. private String fullName;
  92. /**
  93. * 是否在职(0、不在职 1、在职)
  94. */
  95. private Integer whetherEmploy;
  96. /**
  97. * 出生日期
  98. */
  99. private LocalDate birthDate;
  100. /**
  101. * 用户性别(0男 1女 2未知)
  102. */
  103. private Integer sex;
  104. /**
  105. * 联系电话
  106. */
  107. private String phoneNumber;
  108. /**
  109. * 主要职务
  110. */
  111. private Integer mainPosition;
  112. /**
  113. * 服务内容
  114. */
  115. private String serviceContent;
  116. }