StudentInfoOld.java 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481
  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. * 学生档案历史信息对象 student_info_old
  8. *
  9. * @author ruoyi
  10. * @date 2023-07-28
  11. */
  12. public class StudentInfoOld extends BaseEntity
  13. {
  14. private static final long serialVersionUID = 1L;
  15. /** ID */
  16. private Long oldId;
  17. /** 学生id(家长-学生(审核通过之后数据)表id) */
  18. @Excel(name = "学生id", readConverterExp = "家=长-学生(审核通过之后数据)表id")
  19. private Long studentId;
  20. /** 姓名 */
  21. @Excel(name = "姓名")
  22. private String name;
  23. /** 性别(1:男,2:女) */
  24. @Excel(name = "性别(1:男,2:女)")
  25. private String sex;
  26. /** 年龄 */
  27. @Excel(name = "年龄")
  28. private String age;
  29. /** 学校 */
  30. @Excel(name = "学校")
  31. private String school;
  32. /** 学号 */
  33. @Excel(name = "学号")
  34. private String studentNumber;
  35. /** 身份证号 */
  36. @Excel(name = "身份证号")
  37. private String idCard;
  38. /** 是否近视(1:是,2:否) */
  39. @Excel(name = "是否近视", readConverterExp = "1=:是,2:否")
  40. private String isNearsightedness;
  41. /** 近视度数 */
  42. @Excel(name = "近视度数")
  43. private String degreeMyopia;
  44. /** 身高 */
  45. @Excel(name = "身高")
  46. private String height;
  47. /** 体重 */
  48. @Excel(name = "体重")
  49. private String weight;
  50. /** 血型 */
  51. @Excel(name = "血型")
  52. private String bloodType;
  53. /** 政治面貌 */
  54. @Excel(name = "政治面貌")
  55. private String politicalStatus;
  56. /** 健康状况 */
  57. @Excel(name = "健康状况")
  58. private String health;
  59. /** 证件照(地址) */
  60. @Excel(name = "证件照(地址)")
  61. private String identificationPhoto;
  62. /** 心理状况 */
  63. @Excel(name = "心理状况")
  64. private String mind;
  65. /** 门禁照(地址) */
  66. @Excel(name = "门禁照(地址)")
  67. private String entrancePermit;
  68. /** 父亲 */
  69. @Excel(name = "父亲")
  70. private String fatherName;
  71. /** 父亲联系方式 */
  72. @Excel(name = "父亲联系方式")
  73. private String fatherTelephone;
  74. /** 母亲 */
  75. @Excel(name = "母亲")
  76. private String motherName;
  77. /** 母亲联系方式 */
  78. @Excel(name = "母亲联系方式")
  79. private String motherTelephone;
  80. /** 居住地址 */
  81. @Excel(name = "居住地址")
  82. private String address;
  83. /** 经度 */
  84. @Excel(name = "经度")
  85. private String longitude;
  86. /** 纬度 */
  87. @Excel(name = "纬度")
  88. private String latitude;
  89. /** 有无过往病史(1:有,2:无) */
  90. private String isMedicalHistory;
  91. /** 病史描述 */
  92. private String medicalDescription;
  93. /** 心理健康描述 */
  94. private String psychologicalDescription;
  95. /** 留守儿童(1:是,2:否) */
  96. private String isLset;
  97. /** 是否贫困(1:是,2:否) */
  98. private String isPoverty;
  99. /** 紧急联系人 */
  100. private String emergencyContact;
  101. /** 紧急联系人手机号 */
  102. private String emergencyContactTelephone;
  103. /** 名族 */
  104. private String familyName;
  105. /** 是否远视(1:是,2:否) */
  106. private String isFarsightedness;
  107. /** 远视度数 */
  108. private String farsightedness;
  109. public String getFamilyName() {
  110. return familyName;
  111. }
  112. public String getIsFarsightedness() {
  113. return isFarsightedness;
  114. }
  115. public String getFarsightedness() {
  116. return farsightedness;
  117. }
  118. public void setFamilyName(String familyName) {
  119. this.familyName = familyName;
  120. }
  121. public void setIsFarsightedness(String isFarsightedness) {
  122. this.isFarsightedness = isFarsightedness;
  123. }
  124. public void setFarsightedness(String farsightedness) {
  125. this.farsightedness = farsightedness;
  126. }
  127. public String getEmergencyContact() {
  128. return emergencyContact;
  129. }
  130. public String getEmergencyContactTelephone() {
  131. return emergencyContactTelephone;
  132. }
  133. public void setEmergencyContact(String emergencyContact) {
  134. this.emergencyContact = emergencyContact;
  135. }
  136. public void setEmergencyContactTelephone(String emergencyContactTelephone) {
  137. this.emergencyContactTelephone = emergencyContactTelephone;
  138. }
  139. public String getIsLset() {
  140. return isLset;
  141. }
  142. public String getIsPoverty() {
  143. return isPoverty;
  144. }
  145. public void setIsLset(String isLset) {
  146. this.isLset = isLset;
  147. }
  148. public void setIsPoverty(String isPoverty) {
  149. this.isPoverty = isPoverty;
  150. }
  151. public String getIsMedicalHistory() {
  152. return isMedicalHistory;
  153. }
  154. public String getMedicalDescription() {
  155. return medicalDescription;
  156. }
  157. public String getPsychologicalDescription() {
  158. return psychologicalDescription;
  159. }
  160. public void setIsMedicalHistory(String isMedicalHistory) {
  161. this.isMedicalHistory = isMedicalHistory;
  162. }
  163. public void setMedicalDescription(String medicalDescription) {
  164. this.medicalDescription = medicalDescription;
  165. }
  166. public void setPsychologicalDescription(String psychologicalDescription) {
  167. this.psychologicalDescription = psychologicalDescription;
  168. }
  169. public Long getOldId() {
  170. return oldId;
  171. }
  172. public void setOldId(Long oldId) {
  173. this.oldId = oldId;
  174. }
  175. public void setStudentId(Long studentId)
  176. {
  177. this.studentId = studentId;
  178. }
  179. public Long getStudentId()
  180. {
  181. return studentId;
  182. }
  183. public void setName(String name)
  184. {
  185. this.name = name;
  186. }
  187. public String getName()
  188. {
  189. return name;
  190. }
  191. public void setSex(String sex)
  192. {
  193. this.sex = sex;
  194. }
  195. public String getSex()
  196. {
  197. return sex;
  198. }
  199. public void setAge(String age)
  200. {
  201. this.age = age;
  202. }
  203. public String getAge()
  204. {
  205. return age;
  206. }
  207. public void setSchool(String school)
  208. {
  209. this.school = school;
  210. }
  211. public String getSchool()
  212. {
  213. return school;
  214. }
  215. public void setStudentNumber(String studentNumber)
  216. {
  217. this.studentNumber = studentNumber;
  218. }
  219. public String getStudentNumber()
  220. {
  221. return studentNumber;
  222. }
  223. public void setIdCard(String idCard)
  224. {
  225. this.idCard = idCard;
  226. }
  227. public String getIdCard()
  228. {
  229. return idCard;
  230. }
  231. public void setIsNearsightedness(String isNearsightedness)
  232. {
  233. this.isNearsightedness = isNearsightedness;
  234. }
  235. public String getIsNearsightedness()
  236. {
  237. return isNearsightedness;
  238. }
  239. public void setDegreeMyopia(String degreeMyopia)
  240. {
  241. this.degreeMyopia = degreeMyopia;
  242. }
  243. public String getDegreeMyopia()
  244. {
  245. return degreeMyopia;
  246. }
  247. public void setHeight(String height)
  248. {
  249. this.height = height;
  250. }
  251. public String getHeight()
  252. {
  253. return height;
  254. }
  255. public void setWeight(String weight)
  256. {
  257. this.weight = weight;
  258. }
  259. public String getWeight()
  260. {
  261. return weight;
  262. }
  263. public void setBloodType(String bloodType)
  264. {
  265. this.bloodType = bloodType;
  266. }
  267. public String getBloodType()
  268. {
  269. return bloodType;
  270. }
  271. public void setPoliticalStatus(String politicalStatus)
  272. {
  273. this.politicalStatus = politicalStatus;
  274. }
  275. public String getPoliticalStatus()
  276. {
  277. return politicalStatus;
  278. }
  279. public void setHealth(String health)
  280. {
  281. this.health = health;
  282. }
  283. public String getHealth()
  284. {
  285. return health;
  286. }
  287. public void setIdentificationPhoto(String identificationPhoto)
  288. {
  289. this.identificationPhoto = identificationPhoto;
  290. }
  291. public String getIdentificationPhoto()
  292. {
  293. return identificationPhoto;
  294. }
  295. public void setMind(String mind)
  296. {
  297. this.mind = mind;
  298. }
  299. public String getMind()
  300. {
  301. return mind;
  302. }
  303. public void setEntrancePermit(String entrancePermit)
  304. {
  305. this.entrancePermit = entrancePermit;
  306. }
  307. public String getEntrancePermit()
  308. {
  309. return entrancePermit;
  310. }
  311. public void setFatherName(String fatherName)
  312. {
  313. this.fatherName = fatherName;
  314. }
  315. public String getFatherName()
  316. {
  317. return fatherName;
  318. }
  319. public void setFatherTelephone(String fatherTelephone)
  320. {
  321. this.fatherTelephone = fatherTelephone;
  322. }
  323. public String getFatherTelephone()
  324. {
  325. return fatherTelephone;
  326. }
  327. public void setMotherName(String motherName)
  328. {
  329. this.motherName = motherName;
  330. }
  331. public String getMotherName()
  332. {
  333. return motherName;
  334. }
  335. public void setMotherTelephone(String motherTelephone)
  336. {
  337. this.motherTelephone = motherTelephone;
  338. }
  339. public String getMotherTelephone()
  340. {
  341. return motherTelephone;
  342. }
  343. public void setAddress(String address)
  344. {
  345. this.address = address;
  346. }
  347. public String getAddress()
  348. {
  349. return address;
  350. }
  351. public void setLongitude(String longitude)
  352. {
  353. this.longitude = longitude;
  354. }
  355. public String getLongitude()
  356. {
  357. return longitude;
  358. }
  359. public void setLatitude(String latitude)
  360. {
  361. this.latitude = latitude;
  362. }
  363. public String getLatitude()
  364. {
  365. return latitude;
  366. }
  367. @Override
  368. public String toString() {
  369. return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  370. .append("oldId", getOldId())
  371. .append("studentId", getStudentId())
  372. .append("name", getName())
  373. .append("sex", getSex())
  374. .append("age", getAge())
  375. .append("school", getSchool())
  376. .append("studentNumber", getStudentNumber())
  377. .append("idCard", getIdCard())
  378. .append("isNearsightedness", getIsNearsightedness())
  379. .append("degreeMyopia", getDegreeMyopia())
  380. .append("height", getHeight())
  381. .append("weight", getWeight())
  382. .append("bloodType", getBloodType())
  383. .append("politicalStatus", getPoliticalStatus())
  384. .append("health", getHealth())
  385. .append("identificationPhoto", getIdentificationPhoto())
  386. .append("mind", getMind())
  387. .append("entrancePermit", getEntrancePermit())
  388. .append("fatherName", getFatherName())
  389. .append("fatherTelephone", getFatherTelephone())
  390. .append("motherName", getMotherName())
  391. .append("motherTelephone", getMotherTelephone())
  392. .append("address", getAddress())
  393. .append("longitude", getLongitude())
  394. .append("latitude", getLatitude())
  395. .append("createBy", getCreateBy())
  396. .append("createTime", getCreateTime())
  397. .append("updateBy", getUpdateBy())
  398. .append("updateTime", getUpdateTime())
  399. .append("remark", getRemark())
  400. .toString();
  401. }
  402. }