|
@@ -6,6 +6,7 @@ import org.springframework.web.client.RestTemplate;
|
|
|
|
|
|
import cn.com.qmth.examcloud.commons.web.redis.RedisClient;
|
|
|
import cn.com.qmth.examcloud.examwork.api.ExamCloudService;
|
|
|
+import cn.com.qmth.examcloud.examwork.api.request.CountExamStudentReq;
|
|
|
import cn.com.qmth.examcloud.examwork.api.request.GetExamCourseListReq;
|
|
|
import cn.com.qmth.examcloud.examwork.api.request.GetExamCoursePaperTypeListReq;
|
|
|
import cn.com.qmth.examcloud.examwork.api.request.GetExamListReq;
|
|
@@ -16,6 +17,7 @@ import cn.com.qmth.examcloud.examwork.api.request.LockExamStudentsReq;
|
|
|
import cn.com.qmth.examcloud.examwork.api.request.SaveExamReq;
|
|
|
import cn.com.qmth.examcloud.examwork.api.request.SetExamPropertyReq;
|
|
|
import cn.com.qmth.examcloud.examwork.api.request.UnlockExamStudentsReq;
|
|
|
+import cn.com.qmth.examcloud.examwork.api.response.CountExamStudentResp;
|
|
|
import cn.com.qmth.examcloud.examwork.api.response.GetExamCourseListResp;
|
|
|
import cn.com.qmth.examcloud.examwork.api.response.GetExamCoursePaperTypeListResp;
|
|
|
import cn.com.qmth.examcloud.examwork.api.response.GetExamListResp;
|
|
@@ -105,4 +107,9 @@ public class ExamCloudServiceClient extends BasicCloudClientSupport implements E
|
|
|
return post("exam/getExamCoursePaperTypeList", req, GetExamCoursePaperTypeListResp.class);
|
|
|
}
|
|
|
|
|
|
+ @Override
|
|
|
+ public CountExamStudentResp countExamStudent(CountExamStudentReq req) {
|
|
|
+ return post("exam/countExamStudent", req, CountExamStudentResp.class);
|
|
|
+ }
|
|
|
+
|
|
|
}
|