|
@@ -19,11 +19,13 @@ import cn.com.qmth.examcloud.commons.web.support.ControllerSupport;
|
|
|
import cn.com.qmth.examcloud.task.api.DataSyncCloudService;
|
|
|
import cn.com.qmth.examcloud.task.api.request.SyncCourseReq;
|
|
|
import cn.com.qmth.examcloud.task.api.request.SyncExamReq;
|
|
|
+import cn.com.qmth.examcloud.task.api.request.SyncExamStudentReq;
|
|
|
import cn.com.qmth.examcloud.task.api.request.SyncOrgReq;
|
|
|
import cn.com.qmth.examcloud.task.api.request.SyncSpecialtyReq;
|
|
|
import cn.com.qmth.examcloud.task.api.request.SyncStudentReq;
|
|
|
import cn.com.qmth.examcloud.task.api.response.SyncCourseResp;
|
|
|
import cn.com.qmth.examcloud.task.api.response.SyncExamResp;
|
|
|
+import cn.com.qmth.examcloud.task.api.response.SyncExamStudentResp;
|
|
|
import cn.com.qmth.examcloud.task.api.response.SyncOrgResp;
|
|
|
import cn.com.qmth.examcloud.task.api.response.SyncSpecialtyResp;
|
|
|
import cn.com.qmth.examcloud.task.api.response.SyncStudentResp;
|
|
@@ -128,4 +130,10 @@ public class DataSyncCloudServiceProvider extends ControllerSupport
|
|
|
return null;
|
|
|
}
|
|
|
|
|
|
+ @PostMapping("syncExamStudent")
|
|
|
+ @Override
|
|
|
+ public SyncExamStudentResp syncExamStudent(@RequestBody SyncExamStudentReq req) {
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+
|
|
|
}
|