UpdateBaseStudentFamilyMemberDto.java 3.0 KB

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