StudentInfo.java 11 KB

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