|
@@ -48,11 +48,13 @@ import cn.com.qmth.examcloud.examwork.api.bean.ExamStudentBean;
|
|
|
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.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.UpdateExamStudentStatusReq;
|
|
|
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.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.UpdateExamStudentStatusResp;
|
|
|
import cn.com.qmth.examcloud.web.helpers.GlobalHelper;
|
|
@@ -470,4 +472,13 @@ public class ExamStudentCloudServiceProvider extends ControllerSupport
|
|
|
return resp;
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation(value = "重置考生")
|
|
|
+ @PostMapping("resetExamStudent")
|
|
|
+ @Override
|
|
|
+ public ResetExamStudentResp resetExamStudent(@RequestBody ResetExamStudentReq req) {
|
|
|
+
|
|
|
+ ResetExamStudentResp resp = new ResetExamStudentResp();
|
|
|
+ return resp;
|
|
|
+ }
|
|
|
+
|
|
|
}
|