|
@@ -17,8 +17,12 @@ public class CountExamStudentReq extends BaseRequest {
|
|
|
|
|
|
private Long courseId;
|
|
private Long courseId;
|
|
|
|
|
|
|
|
+ private Long orgId;
|
|
|
|
+
|
|
private String paperType;
|
|
private String paperType;
|
|
|
|
|
|
|
|
+ private String examSite;
|
|
|
|
+
|
|
public Long getExamId() {
|
|
public Long getExamId() {
|
|
return examId;
|
|
return examId;
|
|
}
|
|
}
|
|
@@ -35,6 +39,14 @@ public class CountExamStudentReq extends BaseRequest {
|
|
this.courseId = courseId;
|
|
this.courseId = courseId;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ public Long getOrgId() {
|
|
|
|
+ return orgId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setOrgId(Long orgId) {
|
|
|
|
+ this.orgId = orgId;
|
|
|
|
+ }
|
|
|
|
+
|
|
public String getPaperType() {
|
|
public String getPaperType() {
|
|
return paperType;
|
|
return paperType;
|
|
}
|
|
}
|
|
@@ -43,4 +55,12 @@ public class CountExamStudentReq extends BaseRequest {
|
|
this.paperType = paperType;
|
|
this.paperType = paperType;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ public String getExamSite() {
|
|
|
|
+ return examSite;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setExamSite(String examSite) {
|
|
|
|
+ this.examSite = examSite;
|
|
|
|
+ }
|
|
|
|
+
|
|
}
|
|
}
|