|
@@ -212,8 +212,10 @@ public class ExamCloudServiceProvider extends ControllerSupport implements ExamC
|
|
|
return resp;
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation(value = "查询正在考试的考试集合")
|
|
|
+ @PostMapping("getOngoingExamList")
|
|
|
@Override
|
|
|
- public GetOngoingExamListResp getOngoingExamList(GetOngoingExamListReq req) {
|
|
|
+ public GetOngoingExamListResp getOngoingExamList(@RequestBody GetOngoingExamListReq req) {
|
|
|
|
|
|
Long rootOrgId = req.getRootOrgId();
|
|
|
|
|
@@ -271,6 +273,8 @@ public class ExamCloudServiceProvider extends ControllerSupport implements ExamC
|
|
|
return resp;
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation(value = "锁定考试")
|
|
|
+ @PostMapping("lockExamStudents")
|
|
|
@Override
|
|
|
public LockExamStudentsResp lockExamStudents(@RequestBody LockExamStudentsReq req) {
|
|
|
|
|
@@ -295,6 +299,8 @@ public class ExamCloudServiceProvider extends ControllerSupport implements ExamC
|
|
|
return resp;
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation(value = "解锁考试")
|
|
|
+ @PostMapping("unlockExamStudents")
|
|
|
@Override
|
|
|
public UnlockExamStudentsResp unlockExamStudents(@RequestBody UnlockExamStudentsReq req) {
|
|
|
|