SchoolRollTransferStudentVo.java 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290
  1. package com.xjrsoft.module.student.vo;
  2. import io.swagger.annotations.ApiModelProperty;
  3. import lombok.Data;
  4. import java.util.Date;
  5. /**
  6. * @title: 插班生管理表单出参
  7. * @Author dzx
  8. * @Date: 2023-11-30
  9. * @Version 1.0
  10. */
  11. @Data
  12. public class SchoolRollTransferStudentVo {
  13. /**
  14. * 主键编号
  15. */
  16. @ApiModelProperty("主键编号")
  17. private Long id;
  18. /**
  19. * 序号
  20. */
  21. @ApiModelProperty("序号")
  22. private Integer sortCode;
  23. /**
  24. * 所属机构(xjr_department)
  25. */
  26. @ApiModelProperty("所属机构(xjr_department)")
  27. private Long departmentId;
  28. /**
  29. * 入学年级(base_grade)
  30. */
  31. @ApiModelProperty("入学年级(base_grade)")
  32. private Long gradeId;
  33. /**
  34. * 班级(base_class)
  35. */
  36. @ApiModelProperty("班级(base_class)")
  37. private Long classId;
  38. /**
  39. * 专业方向(base_major_set)
  40. */
  41. @ApiModelProperty("专业方向(base_major_set)")
  42. private Long majorSetId;
  43. /**
  44. * 入班时间
  45. */
  46. @ApiModelProperty("入班时间")
  47. private Date inClassDate;
  48. /**
  49. * 转学前学校名称
  50. */
  51. @ApiModelProperty("转学前学校名称")
  52. private String beforeSchoolName;
  53. /**
  54. * 转学前年级名称
  55. */
  56. @ApiModelProperty("转学前年级名称")
  57. private String beforeGradeName;
  58. /**
  59. * 转学前班级名称
  60. */
  61. @ApiModelProperty("转学前班级名称")
  62. private String beforeClassName;
  63. /**
  64. * 转学前专业方向名称
  65. */
  66. @ApiModelProperty("转学前专业方向名称")
  67. private String beforeMajorSetName;
  68. /**
  69. * 转学前学号
  70. */
  71. @ApiModelProperty("转学前学号")
  72. private String beforeSchoolId;
  73. /**
  74. * 转学日期
  75. */
  76. @ApiModelProperty("转学日期")
  77. private Date transferDate;
  78. /**
  79. * 学号
  80. */
  81. @ApiModelProperty("学号")
  82. private String studentId;
  83. /**
  84. * 姓名
  85. */
  86. @ApiModelProperty("姓名")
  87. private String name;
  88. /**
  89. * 别名
  90. */
  91. @ApiModelProperty("别名")
  92. private String asName;
  93. /**
  94. * 性别(xjr_dictionary_item[gender])
  95. */
  96. @ApiModelProperty("性别(xjr_dictionary_item[gender])")
  97. private String gender;
  98. /**
  99. * 证件类型(xjr_dictionary_item[credential_type])
  100. */
  101. @ApiModelProperty("证件类型(xjr_dictionary_item[credential_type])")
  102. private String credentialType;
  103. /**
  104. * 证件号码
  105. */
  106. @ApiModelProperty("证件号码")
  107. private String credentialNumber;
  108. /**
  109. * 出生日期
  110. */
  111. @ApiModelProperty("出生日期")
  112. private Date dayOfBirth;
  113. /**
  114. * 生日类型(xjr_dictionary_item[date_type])
  115. */
  116. @ApiModelProperty("生日类型(xjr_dictionary_item[date_type])")
  117. private String birthType;
  118. /**
  119. * 民族(xjr_dictionary_item[nation])
  120. */
  121. @ApiModelProperty("民族(xjr_dictionary_item[nation])")
  122. private String nation;
  123. /**
  124. * 血型(xjr_dictionary_item[blood_type])
  125. */
  126. @ApiModelProperty("血型(xjr_dictionary_item[blood_type])")
  127. private String bloodType;
  128. /**
  129. * 健康状况(xjr_dictionary_item[health])
  130. */
  131. @ApiModelProperty("健康状况(xjr_dictionary_item[health])")
  132. private String health;
  133. /**
  134. * 婚姻状况(xjr_dictionary_item[marital_state])
  135. */
  136. @ApiModelProperty("婚姻状况(xjr_dictionary_item[marital_state])")
  137. private String maritalState;
  138. /**
  139. * 政治面貌(xjr_dictionary_item[political_state])
  140. */
  141. @ApiModelProperty("政治面貌(xjr_dictionary_item[political_state])")
  142. private String politicalState;
  143. /**
  144. * 信仰宗教(xjr_dictionary_item[religion])
  145. */
  146. @ApiModelProperty("信仰宗教(xjr_dictionary_item[religion])")
  147. private String religion;
  148. /**
  149. * 国籍地区(xjr_dictionary_item[nationality])
  150. */
  151. @ApiModelProperty("国籍地区(xjr_dictionary_item[nationality])")
  152. private String nationality;
  153. /**
  154. * 港澳台侨外(xjr_dictionary_item[chinese_type])
  155. */
  156. @ApiModelProperty("港澳台侨外(xjr_dictionary_item[chinese_type])")
  157. private String chineseType;
  158. /**
  159. * 籍贯 省(xjr_area)
  160. */
  161. @ApiModelProperty("籍贯 省(xjr_area)")
  162. private Long provinces;
  163. /**
  164. * 籍贯 市(xjr_area)
  165. */
  166. @ApiModelProperty("籍贯 市(xjr_area)")
  167. private Long city;
  168. /**
  169. * 籍贯 区/县(xjr_area)
  170. */
  171. @ApiModelProperty("籍贯 区/县(xjr_area)")
  172. private Long district;
  173. /**
  174. * 户口类别(xjr_dictionary_item[house_hold_type])
  175. */
  176. @ApiModelProperty("户口类别(xjr_dictionary_item[house_hold_type])")
  177. private String houseHoldType;
  178. /**
  179. * 户口所在地 省(xjr_area)
  180. */
  181. @ApiModelProperty("户口所在地 省(xjr_area)")
  182. private Long houseProvinces;
  183. /**
  184. * 户口所在地 市(xjr_area)
  185. */
  186. @ApiModelProperty("户口所在地 市(xjr_area)")
  187. private Long houseCity;
  188. /**
  189. * 户口所在地 区/县(xjr_area)
  190. */
  191. @ApiModelProperty("户口所在地 区/县(xjr_area)")
  192. private Long houseDistrict;
  193. /**
  194. * 户口所在详细地址
  195. */
  196. @ApiModelProperty("户口所在详细地址")
  197. private String houseHoldAddress;
  198. /**
  199. * 所属派出所
  200. */
  201. @ApiModelProperty("所属派出所")
  202. private String belongsPolice;
  203. /**
  204. * 出生地 省(xjr_area)
  205. */
  206. @ApiModelProperty("出生地 省(xjr_area)")
  207. private Long birthProvinces;
  208. /**
  209. * 出生地 市(xjr_area)
  210. */
  211. @ApiModelProperty("出生地 市(xjr_area)")
  212. private Long birthCity;
  213. /**
  214. * 出生地 区/县(xjr_area)
  215. */
  216. @ApiModelProperty("出生地 区/县(xjr_area)")
  217. private Long birthDistrict;
  218. /**
  219. * 学生居住地类型(xjr_dictionary_item[residence_type])
  220. */
  221. @ApiModelProperty("学生居住地类型(xjr_dictionary_item[residence_type])")
  222. private String residenceType;
  223. /**
  224. * 是否随迁子女
  225. */
  226. @ApiModelProperty("是否随迁子女")
  227. private Short isMigrateChildren;
  228. /**
  229. * 是否流动人口
  230. */
  231. @ApiModelProperty("是否流动人口")
  232. private Short isFloatingPopulation;
  233. /**
  234. * 家庭电话
  235. */
  236. @ApiModelProperty("家庭电话")
  237. private String telephone;
  238. /**
  239. * 联系人姓名
  240. */
  241. @ApiModelProperty("联系人姓名")
  242. private String contact;
  243. /**
  244. * 家庭住址
  245. */
  246. @ApiModelProperty("家庭住址")
  247. private String address;
  248. /**
  249. * 微信号
  250. */
  251. @ApiModelProperty("微信号")
  252. private String wechat;
  253. /**
  254. * 是否低保
  255. */
  256. @ApiModelProperty("是否低保")
  257. private Short isIndemnify;
  258. /**
  259. * 是否享受国家助学金
  260. */
  261. @ApiModelProperty("是否享受国家助学金")
  262. private Short isStipend;
  263. /**
  264. * 是否免学费
  265. */
  266. @ApiModelProperty("是否免学费")
  267. private Short isFree;
  268. /**
  269. * 是否建档立卡
  270. */
  271. @ApiModelProperty("是否建档立卡")
  272. private Short isFilingCard;
  273. /**
  274. * 是否住宿
  275. */
  276. @ApiModelProperty("是否住宿")
  277. private Short isStay;
  278. /**
  279. * 状态(1:结束 0:未结束)
  280. */
  281. @ApiModelProperty("状态(1:结束 0:未结束)")
  282. private Integer status;
  283. }