BaseStudentVo.java 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. package com.xjrsoft.module.student.vo;
  2. import com.fasterxml.jackson.annotation.JsonFormat;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import lombok.Data;
  5. import java.util.Date;
  6. @Data
  7. public class BaseStudentVo {
  8. /**
  9. * 主键
  10. */
  11. @ApiModelProperty("主键")
  12. private Long id;
  13. /**
  14. * 用户ID(xjr_user)
  15. */
  16. @ApiModelProperty("用户ID(xjr_user)")
  17. private Long userId;
  18. /**
  19. * 学号
  20. */
  21. @ApiModelProperty("学号")
  22. private String studentId;
  23. /**
  24. * 别名
  25. */
  26. @ApiModelProperty("别名")
  27. private String asName;
  28. /**
  29. * 英文姓名
  30. */
  31. @ApiModelProperty("英文姓名")
  32. private String enName;
  33. /**
  34. * 姓名拼音
  35. */
  36. @ApiModelProperty("姓名拼音")
  37. private String pyName;
  38. /**
  39. * 曾用名
  40. */
  41. @ApiModelProperty("曾用名")
  42. private String formerName;
  43. /**
  44. * 出生日期
  45. */
  46. @ApiModelProperty("出生日期")
  47. @JsonFormat(pattern = "yyyy-MM-dd")
  48. private Date dayOfBirth;
  49. /**
  50. * 生日类型(xjr_dictionary_item[date_type])
  51. */
  52. @ApiModelProperty("生日类型(xjr_dictionary_item[date_type])")
  53. private String birthType;
  54. /**
  55. * 民族(xjr_dictionary_item[nation])
  56. */
  57. @ApiModelProperty("民族(xjr_dictionary_item[nation])")
  58. private String nation;
  59. /**
  60. * 血型(xjr_dictionary_item[blood_type])
  61. */
  62. @ApiModelProperty("血型(xjr_dictionary_item[blood_type])")
  63. private String bloodType;
  64. /**
  65. * 健康状况(xjr_dictionary_item[health])
  66. */
  67. @ApiModelProperty("健康状况(xjr_dictionary_item[health])")
  68. private String health;
  69. /**
  70. * 婚姻状况(xjr_dictionary_item[marital_state])
  71. */
  72. @ApiModelProperty("婚姻状况(xjr_dictionary_item[marital_state])")
  73. private String maritalState;
  74. /**
  75. * 政治面貌(xjr_dictionary_item[political_state])
  76. */
  77. @ApiModelProperty("政治面貌(xjr_dictionary_item[political_state])")
  78. private String politicalState;
  79. /**
  80. * 信仰宗教(xjr_dictionary_item[religion])
  81. */
  82. @ApiModelProperty("信仰宗教(xjr_dictionary_item[religion])")
  83. private String religion;
  84. /**
  85. * 国籍地区(xjr_dictionary_item[nationality])
  86. */
  87. @ApiModelProperty("国籍地区(xjr_dictionary_item[nationality])")
  88. private String nationality;
  89. /**
  90. * 港澳台侨外(xjr_dictionary_item[chinese_type])
  91. */
  92. @ApiModelProperty("港澳台侨外(xjr_dictionary_item[chinese_type])")
  93. private String chineseType;
  94. /**
  95. * 户口类别(xjr_dictionary_item[house_hold_type])
  96. */
  97. @ApiModelProperty("户口类别(xjr_dictionary_item[house_hold_type])")
  98. private String houseHoldType;
  99. /**
  100. * 籍贯 省(xjr_area)
  101. */
  102. @ApiModelProperty("籍贯 省(xjr_area)")
  103. private Long provinces;
  104. /**
  105. * 籍贯 市(xjr_area)
  106. */
  107. @ApiModelProperty("籍贯 市(xjr_area)")
  108. private Long city;
  109. /**
  110. * 籍贯 区/县(xjr_area)
  111. */
  112. @ApiModelProperty("籍贯 区/县(xjr_area)")
  113. private Long district;
  114. /**
  115. * 户口所在地 省(xjr_area)
  116. */
  117. @ApiModelProperty("户口所在地 省(xjr_area)")
  118. private Long houseProvinces;
  119. /**
  120. * 户口所在地 市(xjr_area)
  121. */
  122. @ApiModelProperty("户口所在地 市(xjr_area)")
  123. private Long houseCity;
  124. /**
  125. * 户口所在地 区/县(xjr_area)
  126. */
  127. @ApiModelProperty("户口所在地 区/县(xjr_area)")
  128. private Long houseDistrict;
  129. /**
  130. * 户籍地址
  131. */
  132. @ApiModelProperty("户籍地址")
  133. private String houseHoldAddress;
  134. /**
  135. * 所属派出所
  136. */
  137. @ApiModelProperty("所属派出所")
  138. private String belongsPolice;
  139. /**
  140. * 出生地 省(xjr_area)
  141. */
  142. @ApiModelProperty("出生地 省(xjr_area)")
  143. private Long birthProvinces;
  144. /**
  145. * 出生地 市(xjr_area)
  146. */
  147. @ApiModelProperty("出生地 市(xjr_area)")
  148. private Long birthCity;
  149. /**
  150. * 出生地 区/县(xjr_area)
  151. */
  152. @ApiModelProperty("出生地 区/县(xjr_area)")
  153. private Long birthDistrict;
  154. /**
  155. * 生源地(base_graduate_school)
  156. */
  157. @ApiModelProperty("生源地(base_graduate_school)")
  158. private Long graduateSchoolId;
  159. /**
  160. * 学生居住地类型(xjr_dictionary_item[residence_type])
  161. */
  162. @ApiModelProperty("学生居住地类型(xjr_dictionary_item[residence_type])")
  163. private String residenceType;
  164. /**
  165. * 是否随迁子女
  166. */
  167. @ApiModelProperty("是否随迁子女")
  168. private Integer isMigrateChildren;
  169. /**
  170. * 乘火车区间
  171. */
  172. @ApiModelProperty("乘火车区间")
  173. private String trainInterval;
  174. /**
  175. * 是否流动人口
  176. */
  177. @ApiModelProperty("是否流动人口")
  178. private Integer isFloatingPopulation;
  179. /**
  180. * 身高(cm)
  181. */
  182. @ApiModelProperty("身高(cm)")
  183. private Double height;
  184. /**
  185. * 体重(kg)
  186. */
  187. @ApiModelProperty("体重(kg)")
  188. private Double weight;
  189. /**
  190. * 视力
  191. */
  192. @ApiModelProperty("视力")
  193. private Double vision;
  194. /**
  195. * 特长
  196. */
  197. @ApiModelProperty("特长")
  198. private String specialty;
  199. }