UserInfo.java 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  1. package com.ruoyi.system.domain;
  2. import org.apache.commons.lang3.builder.ToStringBuilder;
  3. import org.apache.commons.lang3.builder.ToStringStyle;
  4. import com.ruoyi.common.annotation.Excel;
  5. import com.ruoyi.common.core.domain.BaseEntity;
  6. /**
  7. * 导入人员信息对象 user_info
  8. *
  9. * @author ruoyi
  10. * @date 2022-08-11
  11. */
  12. public class UserInfo extends BaseEntity
  13. {
  14. private static final long serialVersionUID = 1L;
  15. /** */
  16. private Long id;
  17. /** 姓名 */
  18. @Excel(name = "姓名")
  19. private String name;
  20. /** 性别 */
  21. @Excel(name = "性别")
  22. private String gender;
  23. /** 年龄 */
  24. @Excel(name = "年龄")
  25. private Integer age;
  26. /** 身份证号码 */
  27. @Excel(name = "身份证号码")
  28. private String idCard;
  29. /** 联系号码 */
  30. @Excel(name = "联系号码")
  31. private String phoneNum;
  32. /** 部门id */
  33. @Excel(name = "部门id")
  34. private String deptId;
  35. /** 采集地点 */
  36. @Excel(name = "采集地点")
  37. private String collectPlace;
  38. /** 核酸采集时间 */
  39. @Excel(name = "核酸采集时间")
  40. private String nucleicCollectTime;
  41. /** 核酸结果时间 */
  42. @Excel(name = "核酸结果时间")
  43. private String nucleicResultsTime;
  44. /** 职业类别 */
  45. @Excel(name = "职业类别")
  46. private String jobStyle;
  47. /** 重点人群分类 */
  48. @Excel(name = "重点人群分类")
  49. private String focusCrowdStyle;
  50. /** 检测频次(汉字拼接后) */
  51. @Excel(name = "检测频次(汉字拼接后)")
  52. private String detectionFrequency;
  53. /** 检测频次(次数) */
  54. private String detectionNumber;
  55. /** 检测频次(时间范围) */
  56. private String detectionScope;
  57. /** 部门名称 */
  58. private String deptName;
  59. /** 比对开始时间 */
  60. @Excel(name = "比对开始时间")
  61. private String startTime;
  62. /** 比对结束时间 */
  63. @Excel(name = "比对结束时间")
  64. private String endTime;
  65. public void setId(Long id)
  66. {
  67. this.id = id;
  68. }
  69. public Long getId()
  70. {
  71. return id;
  72. }
  73. public void setName(String name)
  74. {
  75. this.name = name;
  76. }
  77. public String getName()
  78. {
  79. return name;
  80. }
  81. public void setGender(String gender)
  82. {
  83. this.gender = gender;
  84. }
  85. public String getGender()
  86. {
  87. return gender;
  88. }
  89. public void setAge(Integer age)
  90. {
  91. this.age = age;
  92. }
  93. public Integer getAge()
  94. {
  95. return age;
  96. }
  97. public void setIdCard(String idCard)
  98. {
  99. this.idCard = idCard;
  100. }
  101. public String getIdCard()
  102. {
  103. return idCard;
  104. }
  105. public void setPhoneNum(String phoneNum)
  106. {
  107. this.phoneNum = phoneNum;
  108. }
  109. public String getPhoneNum()
  110. {
  111. return phoneNum;
  112. }
  113. public void setNucleicCollectTime(String nucleicCollectTime)
  114. {
  115. this.nucleicCollectTime = nucleicCollectTime;
  116. }
  117. public String getNucleicCollectTime()
  118. {
  119. return nucleicCollectTime;
  120. }
  121. public void setNucleicResultsTime(String nucleicResultsTime)
  122. {
  123. this.nucleicResultsTime = nucleicResultsTime;
  124. }
  125. public String getNucleicResultsTime()
  126. {
  127. return nucleicResultsTime;
  128. }
  129. public void setJobStyle(String jobStyle)
  130. {
  131. this.jobStyle = jobStyle;
  132. }
  133. public String getJobStyle()
  134. {
  135. return jobStyle;
  136. }
  137. public void setFocusCrowdStyle(String focusCrowdStyle)
  138. {
  139. this.focusCrowdStyle = focusCrowdStyle;
  140. }
  141. public String getFocusCrowdStyle()
  142. {
  143. return focusCrowdStyle;
  144. }
  145. public void setDetectionFrequency(String detectionFrequency)
  146. {
  147. this.detectionFrequency = detectionFrequency;
  148. }
  149. public String getDetectionFrequency()
  150. {
  151. return detectionFrequency;
  152. }
  153. public void setDetectionNumber(String detectionNumber)
  154. {
  155. this.detectionNumber = detectionNumber;
  156. }
  157. public String getDetectionNumber()
  158. {
  159. return detectionNumber;
  160. }
  161. public void setDetectionScope(String detectionScope)
  162. {
  163. this.detectionScope = detectionScope;
  164. }
  165. public String getDetectionScope()
  166. {
  167. return detectionScope;
  168. }
  169. public void setDeptName(String deptName)
  170. {
  171. this.deptName = deptName;
  172. }
  173. public String getDeptName()
  174. {
  175. return deptName;
  176. }
  177. public void setStartTime(String startTime)
  178. {
  179. this.startTime = startTime;
  180. }
  181. public String getStartTime()
  182. {
  183. return startTime;
  184. }
  185. public void setEndTime(String endTime)
  186. {
  187. this.endTime = endTime;
  188. }
  189. public String getEndTime()
  190. {
  191. return endTime;
  192. }
  193. public String getCollectPlace() {
  194. return collectPlace;
  195. }
  196. public void setCollectPlace(String collectPlace) {
  197. this.collectPlace = collectPlace;
  198. }
  199. @Override
  200. public String toString() {
  201. return "UserInfo{" +
  202. "id=" + id +
  203. ", name='" + name + '\'' +
  204. ", gender='" + gender + '\'' +
  205. ", age=" + age +
  206. ", idCard='" + idCard + '\'' +
  207. ", phoneNum='" + phoneNum + '\'' +
  208. ", collectPlace='" + collectPlace + '\'' +
  209. ", nucleicCollectTime='" + nucleicCollectTime + '\'' +
  210. ", nucleicResultsTime='" + nucleicResultsTime + '\'' +
  211. ", jobStyle='" + jobStyle + '\'' +
  212. ", focusCrowdStyle='" + focusCrowdStyle + '\'' +
  213. ", detectionFrequency='" + detectionFrequency + '\'' +
  214. ", detectionNumber='" + detectionNumber + '\'' +
  215. ", detectionScope='" + detectionScope + '\'' +
  216. ", deptName='" + deptName + '\'' +
  217. ", startTime='" + startTime + '\'' +
  218. ", endTime='" + endTime + '\'' +
  219. '}';
  220. }
  221. }