ExamRegistrationQueryInfo.java 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. package com.keao.edu.user.page;
  2. import com.keao.edu.common.page.QueryInfo;
  3. import com.keao.edu.user.enums.StudentRegistrationStatusEnum;
  4. import io.swagger.annotations.ApiModelProperty;
  5. /**
  6. * @Author Joburgess
  7. * @Date 2020.06.23
  8. */
  9. public class ExamRegistrationQueryInfo extends QueryInfo {
  10. // @ApiModelProperty(value = "合作单位编号")
  11. // private Integer organId;
  12. @ApiModelProperty(value = "考试报名编号")
  13. private Integer examRegistrationId;
  14. @ApiModelProperty(value = "考试项目编号")
  15. private Integer examId;
  16. @ApiModelProperty(value = "合作单位编号")
  17. private Integer organizationId;
  18. @ApiModelProperty(value = "专业编号")
  19. private Integer subjectId;
  20. @ApiModelProperty(value = "报考级别")
  21. private Integer level;
  22. @ApiModelProperty(value = "学员编号")
  23. private Integer studentId;
  24. @ApiModelProperty(value = "学员状态")
  25. private StudentRegistrationStatusEnum status;
  26. @ApiModelProperty(value = "是否已排考:0否,1已排考")
  27. private Integer inRoom;
  28. public Integer getExamRegistrationId() {
  29. return examRegistrationId;
  30. }
  31. public void setExamRegistrationId(Integer examRegistrationId) {
  32. this.examRegistrationId = examRegistrationId;
  33. }
  34. public Integer getStudentId() {
  35. return studentId;
  36. }
  37. public void setStudentId(Integer studentId) {
  38. this.studentId = studentId;
  39. }
  40. // public Integer getOrganId() {
  41. // return organId;
  42. // }
  43. // public void setOrganId(Integer organId) {
  44. // this.organId = organId;
  45. // }
  46. public Integer getExamId() {
  47. return examId;
  48. }
  49. public void setExamId(Integer examId) {
  50. this.examId = examId;
  51. }
  52. public Integer getOrganizationId() {
  53. return organizationId;
  54. }
  55. public void setOrganizationId(Integer organizationId) {
  56. this.organizationId = organizationId;
  57. }
  58. public Integer getSubjectId() {
  59. return subjectId;
  60. }
  61. public void setSubjectId(Integer subjectId) {
  62. this.subjectId = subjectId;
  63. }
  64. public Integer getLevel() {
  65. return level;
  66. }
  67. public void setLevel(Integer level) {
  68. this.level = level;
  69. }
  70. public StudentRegistrationStatusEnum getStatus() {
  71. return status;
  72. }
  73. public void setStatus(StudentRegistrationStatusEnum status) {
  74. this.status = status;
  75. }
  76. public Integer getInRoom() {
  77. return inRoom;
  78. }
  79. public void setInRoom(Integer inRoom) {
  80. this.inRoom = inRoom;
  81. }
  82. }