UserInfo.java 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319
  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. import java.util.List;
  7. /**
  8. * 导入人员信息对象 user_info
  9. *
  10. * @author ruoyi
  11. * @date 2022-08-11
  12. */
  13. public class UserInfo extends BaseEntity
  14. {
  15. private static final long serialVersionUID = 1L;
  16. /** */
  17. private Long id;
  18. /** 姓名 */
  19. @Excel(name = "姓名")
  20. private String name;
  21. @Excel(name = "比对结果")
  22. private String detectionResult;
  23. /** 性别 */
  24. private String gender;
  25. /** 年龄 */
  26. private Integer age;
  27. /** 身份证号码 */
  28. @Excel(name = "身份证号")
  29. private String idCard;
  30. /** 手机号 */
  31. @Excel(name = "手机号码")
  32. private String phoneNum;
  33. /** 部门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 nucleicResults;
  47. /** 职业类别 */
  48. @Excel(name = "职业类别")
  49. private String jobStyle;
  50. /** 重点人群分类 */
  51. @Excel(name = "重点人群分类")
  52. private String focusCrowdStyle;
  53. /** 检测频次(汉字拼接后) */
  54. @Excel(name = "检测频次(次/天)")
  55. private String detectionFrequency;
  56. /** 检测频次(次数) */
  57. private String detectionNumber;
  58. /** 检测频次(时间范围) */
  59. private String detectionScope;
  60. /** 检测进度 */
  61. @Excel(name = "进度(已做核酸次数/频次)")
  62. private String detectionProgress;
  63. /** 部门名称 */
  64. private String deptName;
  65. /** 比对开始时间 */
  66. @Excel(name = "比对开始时间")
  67. private String startTime;
  68. /** 比对结束时间 */
  69. @Excel(name = "比对结束时间")
  70. private String endTime;
  71. private List<String> deptIdList;
  72. public List<String> getDeptIdList() {
  73. return deptIdList;
  74. }
  75. public void setDeptIdList(List<String> deptIdList) {
  76. this.deptIdList = deptIdList;
  77. }
  78. public String getNucleicResults() {
  79. return nucleicResults;
  80. }
  81. public String getDetectionResult() {
  82. return detectionResult;
  83. }
  84. public void setId(Long id)
  85. {
  86. this.id = id;
  87. }
  88. public String getDetectionProgress() {
  89. return detectionProgress;
  90. }
  91. public Long getId()
  92. {
  93. return id;
  94. }
  95. public void setName(String name)
  96. {
  97. this.name = name;
  98. }
  99. public String getName()
  100. {
  101. return name;
  102. }
  103. public void setGender(String gender)
  104. {
  105. this.gender = gender;
  106. }
  107. public String getGender()
  108. {
  109. return gender;
  110. }
  111. public void setAge(Integer age)
  112. {
  113. this.age = age;
  114. }
  115. public Integer getAge()
  116. {
  117. return age;
  118. }
  119. public void setIdCard(String idCard)
  120. {
  121. this.idCard = idCard;
  122. }
  123. public String getIdCard()
  124. {
  125. return idCard;
  126. }
  127. public void setPhoneNum(String phoneNum)
  128. {
  129. this.phoneNum = phoneNum;
  130. }
  131. public String getPhoneNum()
  132. {
  133. return phoneNum;
  134. }
  135. public void setNucleicCollectTime(String nucleicCollectTime)
  136. {
  137. this.nucleicCollectTime = nucleicCollectTime;
  138. }
  139. public String getNucleicCollectTime()
  140. {
  141. return nucleicCollectTime;
  142. }
  143. public void setNucleicResultsTime(String nucleicResultsTime)
  144. {
  145. this.nucleicResultsTime = nucleicResultsTime;
  146. }
  147. public String getNucleicResultsTime()
  148. {
  149. return nucleicResultsTime;
  150. }
  151. public void setJobStyle(String jobStyle)
  152. {
  153. this.jobStyle = jobStyle;
  154. }
  155. public String getJobStyle()
  156. {
  157. return jobStyle;
  158. }
  159. public void setFocusCrowdStyle(String focusCrowdStyle)
  160. {
  161. this.focusCrowdStyle = focusCrowdStyle;
  162. }
  163. public String getFocusCrowdStyle()
  164. {
  165. return focusCrowdStyle;
  166. }
  167. public void setDetectionFrequency(String detectionFrequency)
  168. {
  169. this.detectionFrequency = detectionFrequency;
  170. }
  171. public String getDetectionFrequency()
  172. {
  173. return detectionFrequency;
  174. }
  175. public void setDetectionNumber(String detectionNumber)
  176. {
  177. this.detectionNumber = detectionNumber;
  178. }
  179. public String getDetectionNumber()
  180. {
  181. return detectionNumber;
  182. }
  183. public void setDetectionScope(String detectionScope)
  184. {
  185. this.detectionScope = detectionScope;
  186. }
  187. public String getDetectionScope()
  188. {
  189. return detectionScope;
  190. }
  191. public void setDeptName(String deptName)
  192. {
  193. this.deptName = deptName;
  194. }
  195. public String getDeptName()
  196. {
  197. return deptName;
  198. }
  199. public void setStartTime(String startTime)
  200. {
  201. this.startTime = startTime;
  202. }
  203. public String getStartTime()
  204. {
  205. return startTime;
  206. }
  207. public void setEndTime(String endTime)
  208. {
  209. this.endTime = endTime;
  210. }
  211. public String getEndTime()
  212. {
  213. return endTime;
  214. }
  215. public String getCollectPlace() {
  216. return collectPlace;
  217. }
  218. public void setCollectPlace(String collectPlace) {
  219. this.collectPlace = collectPlace;
  220. }
  221. public String getDeptId() {
  222. return deptId;
  223. }
  224. public void setDeptId(String deptId) {
  225. this.deptId = deptId;
  226. }
  227. public void setDetectionResult(String detectionResult) {
  228. this.detectionResult = detectionResult;
  229. }
  230. public void setDetectionProgress(String detectionProgress) {
  231. this.detectionProgress = detectionProgress;
  232. }
  233. public void setNucleicResults(String nucleicResults) {
  234. this.nucleicResults = nucleicResults;
  235. }
  236. @Override
  237. public String toString() {
  238. return "UserInfo{" +
  239. "id=" + id +
  240. ", name='" + name + '\'' +
  241. ", detectionResult='" + detectionResult + '\'' +
  242. ", gender='" + gender + '\'' +
  243. ", age=" + age +
  244. ", idCard='" + idCard + '\'' +
  245. ", phoneNum='" + phoneNum + '\'' +
  246. ", deptId='" + deptId + '\'' +
  247. ", collectPlace='" + collectPlace + '\'' +
  248. ", nucleicCollectTime='" + nucleicCollectTime + '\'' +
  249. ", nucleicResultsTime='" + nucleicResultsTime + '\'' +
  250. ", nucleicResults='" + nucleicResults + '\'' +
  251. ", jobStyle='" + jobStyle + '\'' +
  252. ", focusCrowdStyle='" + focusCrowdStyle + '\'' +
  253. ", detectionFrequency='" + detectionFrequency + '\'' +
  254. ", detectionNumber='" + detectionNumber + '\'' +
  255. ", detectionScope='" + detectionScope + '\'' +
  256. ", detectionProgress='" + detectionProgress + '\'' +
  257. ", deptName='" + deptName + '\'' +
  258. ", startTime='" + startTime + '\'' +
  259. ", endTime='" + endTime + '\'' +
  260. '}';
  261. }
  262. }