|
@@ -6,11 +6,13 @@ import cn.com.qmth.examcloud.examwork.api.ExamStudentCloudService;
|
|
import cn.com.qmth.examcloud.examwork.api.request.CopyExamStudentsReq;
|
|
import cn.com.qmth.examcloud.examwork.api.request.CopyExamStudentsReq;
|
|
import cn.com.qmth.examcloud.examwork.api.request.GetExamStudentPageReq;
|
|
import cn.com.qmth.examcloud.examwork.api.request.GetExamStudentPageReq;
|
|
import cn.com.qmth.examcloud.examwork.api.request.GetExamStudentReq;
|
|
import cn.com.qmth.examcloud.examwork.api.request.GetExamStudentReq;
|
|
|
|
+import cn.com.qmth.examcloud.examwork.api.request.ResetExamStudentReq;
|
|
import cn.com.qmth.examcloud.examwork.api.request.SaveExamStudentReq;
|
|
import cn.com.qmth.examcloud.examwork.api.request.SaveExamStudentReq;
|
|
import cn.com.qmth.examcloud.examwork.api.request.UpdateExamStudentStatusReq;
|
|
import cn.com.qmth.examcloud.examwork.api.request.UpdateExamStudentStatusReq;
|
|
import cn.com.qmth.examcloud.examwork.api.response.CopyExamStudentsResp;
|
|
import cn.com.qmth.examcloud.examwork.api.response.CopyExamStudentsResp;
|
|
import cn.com.qmth.examcloud.examwork.api.response.GetExamStudentPageResp;
|
|
import cn.com.qmth.examcloud.examwork.api.response.GetExamStudentPageResp;
|
|
import cn.com.qmth.examcloud.examwork.api.response.GetExamStudentResp;
|
|
import cn.com.qmth.examcloud.examwork.api.response.GetExamStudentResp;
|
|
|
|
+import cn.com.qmth.examcloud.examwork.api.response.ResetExamStudentResp;
|
|
import cn.com.qmth.examcloud.examwork.api.response.SaveExamStudentResp;
|
|
import cn.com.qmth.examcloud.examwork.api.response.SaveExamStudentResp;
|
|
import cn.com.qmth.examcloud.examwork.api.response.UpdateExamStudentStatusResp;
|
|
import cn.com.qmth.examcloud.examwork.api.response.UpdateExamStudentStatusResp;
|
|
|
|
|
|
@@ -46,4 +48,9 @@ public class ExamStudentCloudServiceClient extends AbstractCloudClientSupport
|
|
return post("examStudent/updateExamStudentStatus", req, UpdateExamStudentStatusResp.class);
|
|
return post("examStudent/updateExamStudentStatus", req, UpdateExamStudentStatusResp.class);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @Override
|
|
|
|
+ public ResetExamStudentResp resetExamStudent(ResetExamStudentReq req) {
|
|
|
|
+ return post("examStudent/resetExamStudent", req, ResetExamStudentResp.class);
|
|
|
|
+ }
|
|
|
|
+
|
|
}
|
|
}
|