|
@@ -15,12 +15,14 @@ import cn.com.qmth.examcloud.commons.api.request.SyncExamStudentReq;
|
|
|
import cn.com.qmth.examcloud.commons.api.request.SyncOrgReq;
|
|
|
import cn.com.qmth.examcloud.commons.api.request.SyncSpecialtyReq;
|
|
|
import cn.com.qmth.examcloud.commons.api.request.SyncStudentReq;
|
|
|
+import cn.com.qmth.examcloud.commons.api.request.SyncUserReq;
|
|
|
import cn.com.qmth.examcloud.commons.api.response.SyncCourseResp;
|
|
|
import cn.com.qmth.examcloud.commons.api.response.SyncExamResp;
|
|
|
import cn.com.qmth.examcloud.commons.api.response.SyncExamStudentResp;
|
|
|
import cn.com.qmth.examcloud.commons.api.response.SyncOrgResp;
|
|
|
import cn.com.qmth.examcloud.commons.api.response.SyncSpecialtyResp;
|
|
|
import cn.com.qmth.examcloud.commons.api.response.SyncStudentResp;
|
|
|
+import cn.com.qmth.examcloud.commons.api.response.SyncUserResp;
|
|
|
import cn.com.qmth.examcloud.commons.base.exception.StatusException;
|
|
|
import cn.com.qmth.examcloud.commons.web.support.ControllerSupport;
|
|
|
import cn.com.qmth.examcloud.core.examwork.dao.ExamCourseRelationRepo;
|
|
@@ -127,4 +129,11 @@ public class HandleSyncCloudServiceProvider extends ControllerSupport
|
|
|
return null;
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation(value = "同步考试")
|
|
|
+ @PostMapping("syncExam")
|
|
|
+ @Override
|
|
|
+ public SyncUserResp syncUser(@RequestBody SyncUserReq req) {
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+
|
|
|
}
|