ExamCertificationDto.java 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. package com.keao.edu.user.dto;
  2. import io.swagger.annotations.ApiModelProperty;
  3. public class ExamCertificationDto{
  4. @ApiModelProperty(value = "报名编号")
  5. private Long examRegistrationId;
  6. @ApiModelProperty(value = "准考证号")
  7. private String cardNo;
  8. @ApiModelProperty(value = "姓名")
  9. private String realName;
  10. @ApiModelProperty(value = "性别")
  11. private Integer gender;
  12. @ApiModelProperty(value = "科目")
  13. private String subjectName;
  14. @ApiModelProperty(value = "科目")
  15. private Integer subjectId;
  16. @ApiModelProperty(value = "学员编号")
  17. private Integer studentId;
  18. @ApiModelProperty(value = "学员确认状态")
  19. private Integer confirmStatus;
  20. @ApiModelProperty(value = "级别")
  21. private Integer level;
  22. @ApiModelProperty(value = "考试时间")
  23. private String examTime;
  24. @ApiModelProperty(value = "考试地点")
  25. private String examAddress;
  26. @ApiModelProperty(value = "证件照")
  27. private String certificatePhoto;
  28. @ApiModelProperty(value = "考试内容")
  29. private String songJson;
  30. public Integer getConfirmStatus() {
  31. return confirmStatus;
  32. }
  33. public void setConfirmStatus(Integer confirmStatus) {
  34. this.confirmStatus = confirmStatus;
  35. }
  36. public Integer getStudentId() {
  37. return studentId;
  38. }
  39. public void setStudentId(Integer studentId) {
  40. this.studentId = studentId;
  41. }
  42. public String getSongJson() {
  43. return songJson;
  44. }
  45. public void setSongJson(String songJson) {
  46. this.songJson = songJson;
  47. }
  48. public String getCertificatePhoto() {
  49. return certificatePhoto;
  50. }
  51. public void setCertificatePhoto(String certificatePhoto) {
  52. this.certificatePhoto = certificatePhoto;
  53. }
  54. public Integer getSubjectId() {
  55. return subjectId;
  56. }
  57. public void setSubjectId(Integer subjectId) {
  58. this.subjectId = subjectId;
  59. }
  60. public Long getExamRegistrationId() {
  61. return examRegistrationId;
  62. }
  63. public void setExamRegistrationId(Long examRegistrationId) {
  64. this.examRegistrationId = examRegistrationId;
  65. }
  66. public String getCardNo() {
  67. return cardNo;
  68. }
  69. public void setCardNo(String cardNo) {
  70. this.cardNo = cardNo;
  71. }
  72. public String getRealName() {
  73. return realName;
  74. }
  75. public void setRealName(String realName) {
  76. this.realName = realName;
  77. }
  78. public Integer getGender() {
  79. return gender;
  80. }
  81. public void setGender(Integer gender) {
  82. this.gender = gender;
  83. }
  84. public String getSubjectName() {
  85. return subjectName;
  86. }
  87. public void setSubjectName(String subjectName) {
  88. this.subjectName = subjectName;
  89. }
  90. public Integer getLevel() {
  91. return level;
  92. }
  93. public void setLevel(Integer level) {
  94. this.level = level;
  95. }
  96. public String getExamTime() {
  97. return examTime;
  98. }
  99. public void setExamTime(String examTime) {
  100. this.examTime = examTime;
  101. }
  102. public String getExamAddress() {
  103. return examAddress;
  104. }
  105. public void setExamAddress(String examAddress) {
  106. this.examAddress = examAddress;
  107. }
  108. }