ExamReviewQueryInfo.java 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. package com.keao.edu.user.page;
  2. import com.keao.edu.common.page.QueryInfo;
  3. import com.keao.edu.user.enums.ExamRoomTeaherTypeEnum;
  4. import com.keao.edu.user.enums.StudentRegistrationStatusEnum;
  5. import io.swagger.annotations.ApiModelProperty;
  6. public class ExamReviewQueryInfo extends QueryInfo {
  7. @ApiModelProperty(value = "考试项目编号")
  8. private Integer examinationBaseId;
  9. @ApiModelProperty(value = "学员报名编号")
  10. private Long registId;
  11. @ApiModelProperty(value = "考场编号")
  12. private Long roomId;
  13. @ApiModelProperty(value = "准考证号")
  14. private String cardNo;
  15. @ApiModelProperty(value = "合作单位编号")
  16. private Integer organId;
  17. @ApiModelProperty(value = "专业编号")
  18. private Integer subjectId;
  19. @ApiModelProperty(value = "考试级别")
  20. private Integer level;
  21. @ApiModelProperty(value = "学员报名状态")
  22. private StudentRegistrationStatusEnum studentStatus;
  23. @ApiModelProperty(value = "考官编号")
  24. private Integer teacherId;
  25. @ApiModelProperty(value = "考生编号")
  26. private Integer studentId;
  27. @ApiModelProperty(value = "评审结果")
  28. private String evaluationResult;
  29. @ApiModelProperty(value = "评审时间")
  30. private String startTime;
  31. @ApiModelProperty(value = "评审时间")
  32. private String endTime;
  33. @ApiModelProperty(value = "教师属性")
  34. private ExamRoomTeaherTypeEnum teacherType;
  35. @ApiModelProperty(value = "考试时间")
  36. private String examStartTime;
  37. @ApiModelProperty(value = "考试结束时间")
  38. private String examEndTime;
  39. public Long getRoomId() {
  40. return roomId;
  41. }
  42. public void setRoomId(Long roomId) {
  43. this.roomId = roomId;
  44. }
  45. public Long getRegistId() {
  46. return registId;
  47. }
  48. public void setRegistId(Long registId) {
  49. this.registId = registId;
  50. }
  51. public ExamRoomTeaherTypeEnum getTeacherType() {
  52. return teacherType;
  53. }
  54. public void setTeacherType(ExamRoomTeaherTypeEnum teacherType) {
  55. this.teacherType = teacherType;
  56. }
  57. public String getExamStartTime() {
  58. return examStartTime;
  59. }
  60. public void setExamStartTime(String examStartTime) {
  61. this.examStartTime = examStartTime;
  62. }
  63. public String getStartTime() {
  64. return startTime;
  65. }
  66. public void setStartTime(String startTime) {
  67. this.startTime = startTime;
  68. }
  69. public String getEndTime() {
  70. return endTime;
  71. }
  72. public void setEndTime(String endTime) {
  73. this.endTime = endTime;
  74. }
  75. public Integer getExaminationBaseId() {
  76. return examinationBaseId;
  77. }
  78. public void setExaminationBaseId(Integer examinationBaseId) {
  79. this.examinationBaseId = examinationBaseId;
  80. }
  81. public Integer getTeacherId() {
  82. return teacherId;
  83. }
  84. public void setTeacherId(Integer teacherId) {
  85. this.teacherId = teacherId;
  86. }
  87. public Integer getStudentId() {
  88. return studentId;
  89. }
  90. public void setStudentId(Integer studentId) {
  91. this.studentId = studentId;
  92. }
  93. public String getEvaluationResult() {
  94. return evaluationResult;
  95. }
  96. public void setEvaluationResult(String evaluationResult) {
  97. this.evaluationResult = evaluationResult;
  98. }
  99. public String getCardNo() {
  100. return cardNo;
  101. }
  102. public void setCardNo(String cardNo) {
  103. this.cardNo = cardNo;
  104. }
  105. public Integer getOrganId() {
  106. return organId;
  107. }
  108. public void setOrganId(Integer organId) {
  109. this.organId = organId;
  110. }
  111. public Integer getSubjectId() {
  112. return subjectId;
  113. }
  114. public void setSubjectId(Integer subjectId) {
  115. this.subjectId = subjectId;
  116. }
  117. public Integer getLevel() {
  118. return level;
  119. }
  120. public void setLevel(Integer level) {
  121. this.level = level;
  122. }
  123. public StudentRegistrationStatusEnum getStudentStatus() {
  124. return studentStatus;
  125. }
  126. public void setStudentStatus(StudentRegistrationStatusEnum studentStatus) {
  127. this.studentStatus = studentStatus;
  128. }
  129. public String getExamEndTime() {
  130. return examEndTime;
  131. }
  132. public void setExamEndTime(String examEndTime) {
  133. this.examEndTime = examEndTime;
  134. }
  135. }