|
@@ -0,0 +1,67 @@
|
|
|
+package com.keao.edu.user.page;
|
|
|
+
|
|
|
+import com.keao.edu.common.page.QueryInfo;
|
|
|
+import com.keao.edu.user.enums.StudentRegistrationStatusEnum;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @Author Joburgess
|
|
|
+ * @Date 2020.06.23
|
|
|
+ */
|
|
|
+public class ExamRegistrationQueryInfo extends QueryInfo {
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "考试项目编号")
|
|
|
+ private Integer examId;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "机构编号")
|
|
|
+ private Integer agencyId;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "专业编号")
|
|
|
+ private Integer subjectId;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "报考级别")
|
|
|
+ private Integer level;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "学员状态")
|
|
|
+ private StudentRegistrationStatusEnum status;
|
|
|
+
|
|
|
+ public Integer getExamId() {
|
|
|
+ return examId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setExamId(Integer examId) {
|
|
|
+ this.examId = examId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getAgencyId() {
|
|
|
+ return agencyId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAgencyId(Integer agencyId) {
|
|
|
+ this.agencyId = agencyId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getSubjectId() {
|
|
|
+ return subjectId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSubjectId(Integer subjectId) {
|
|
|
+ this.subjectId = subjectId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getLevel() {
|
|
|
+ return level;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setLevel(Integer level) {
|
|
|
+ this.level = level;
|
|
|
+ }
|
|
|
+
|
|
|
+ public StudentRegistrationStatusEnum getStatus() {
|
|
|
+ return status;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStatus(StudentRegistrationStatusEnum status) {
|
|
|
+ this.status = status;
|
|
|
+ }
|
|
|
+}
|