AddBaseStudentFamilyMemberDto.java 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. package com.xjrsoft.module.student.dto;
  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 AddBaseStudentFamilyMemberDto {
  8. /**
  9. * 用户ID(xjr_user)
  10. */
  11. @ApiModelProperty("用户ID(xjr_user)")
  12. private Long userId;
  13. /**
  14. * 与本人关系(xjr_dictionary_item[relationship])
  15. */
  16. @ApiModelProperty("与本人关系(xjr_dictionary_item[relationship])")
  17. private String relationship;
  18. /**
  19. * 姓名
  20. */
  21. @ApiModelProperty("姓名")
  22. private String name;
  23. /**
  24. * 性别(xjr_dictionary_item[gender])
  25. */
  26. @ApiModelProperty("性别(xjr_dictionary_item[gender])")
  27. private String gender;
  28. /**
  29. * 出生日期
  30. */
  31. @ApiModelProperty("出生日期")
  32. @JsonFormat(pattern = "yyyy-MM-dd")
  33. private Date dayOfBirth;
  34. /**
  35. * 生日类型(xjr_dictionary_item[date_type])
  36. */
  37. @ApiModelProperty("生日类型(xjr_dictionary_item[date_type])")
  38. private String birthType;
  39. /**
  40. * 民族(xjr_dictionary_item[nation])
  41. */
  42. @ApiModelProperty("民族(xjr_dictionary_item[nation])")
  43. private String nation;
  44. /**
  45. * 工作单位
  46. */
  47. @ApiModelProperty("工作单位")
  48. private String workUnit;
  49. /**
  50. * 从事的工作(职业)
  51. */
  52. @ApiModelProperty("从事的工作(职业)")
  53. private String occupation;
  54. /**
  55. * 职务
  56. */
  57. @ApiModelProperty("职务")
  58. private String position;
  59. /**
  60. * 联系电话
  61. */
  62. @ApiModelProperty("联系电话")
  63. private String mobile;
  64. /**
  65. * 是否为监护人
  66. */
  67. @ApiModelProperty("是否为监护人")
  68. private Integer isGuardian;
  69. /**
  70. * 证件类型(xjr_dictionary_item[credential_type])
  71. */
  72. @ApiModelProperty("证件类型(xjr_dictionary_item[credential_type])")
  73. private String credentialType;
  74. /**
  75. * 证件号码
  76. */
  77. @ApiModelProperty("证件号码")
  78. private String credentialNumber;
  79. /**
  80. * 政治面貌(xjr_dictionary_item[political_state])
  81. */
  82. @ApiModelProperty("政治面貌(xjr_dictionary_item[political_state])")
  83. private String politicalState;
  84. /**
  85. * 健康状况(xjr_dictionary_item[health])
  86. */
  87. @ApiModelProperty("健康状况(xjr_dictionary_item[health])")
  88. private String health;
  89. /**
  90. * 户口所在地 省(xjr_area)
  91. */
  92. @ApiModelProperty("户口所在地 省(xjr_area)")
  93. private Long houseProvinces;
  94. /**
  95. * 户口所在地 市(xjr_area)
  96. */
  97. @ApiModelProperty("户口所在地 市(xjr_area)")
  98. private Long houseCity;
  99. /**
  100. * 户口所在地 区/县(xjr_area)
  101. */
  102. @ApiModelProperty("户口所在地 区/县(xjr_area)")
  103. private Long houseDistrict;
  104. /**
  105. * 邮箱
  106. */
  107. @ApiModelProperty("邮箱")
  108. private String email;
  109. /**
  110. * 微信号
  111. */
  112. @ApiModelProperty("微信号")
  113. private String wechat;
  114. }