|
@@ -1,8 +1,32 @@
|
|
package cn.com.qmth.examcloud.core.oe.student.api;
|
|
package cn.com.qmth.examcloud.core.oe.student.api;
|
|
|
|
|
|
import cn.com.qmth.examcloud.api.commons.CloudService;
|
|
import cn.com.qmth.examcloud.api.commons.CloudService;
|
|
-import cn.com.qmth.examcloud.core.oe.student.api.request.*;
|
|
|
|
-import cn.com.qmth.examcloud.core.oe.student.api.response.*;
|
|
|
|
|
|
+import cn.com.qmth.examcloud.core.oe.student.api.request.CalcExamScoreReq;
|
|
|
|
+import cn.com.qmth.examcloud.core.oe.student.api.request.CalcFaceBiopsyResultReq;
|
|
|
|
+import cn.com.qmth.examcloud.core.oe.student.api.request.CheckPaperInExamReq;
|
|
|
|
+import cn.com.qmth.examcloud.core.oe.student.api.request.GetExamFaceLivenessVerifiesReq;
|
|
|
|
+import cn.com.qmth.examcloud.core.oe.student.api.request.GetExamRecordDataIdsReq;
|
|
|
|
+import cn.com.qmth.examcloud.core.oe.student.api.request.GetExamRecordNumReq;
|
|
|
|
+import cn.com.qmth.examcloud.core.oe.student.api.request.GetExamRecordPaperStructReq;
|
|
|
|
+import cn.com.qmth.examcloud.core.oe.student.api.request.GetExamRecordQuestionsReq;
|
|
|
|
+import cn.com.qmth.examcloud.core.oe.student.api.request.GetFaceBiopsyReq;
|
|
|
|
+import cn.com.qmth.examcloud.core.oe.student.api.request.HandInExamReq;
|
|
|
|
+import cn.com.qmth.examcloud.core.oe.student.api.request.UpdateExamRecordDataBatchNumReq;
|
|
|
|
+import cn.com.qmth.examcloud.core.oe.student.api.request.UpdateExamRecordStatusReq;
|
|
|
|
+import cn.com.qmth.examcloud.core.oe.student.api.request.UpdatePartialExamRecordReq;
|
|
|
|
+import cn.com.qmth.examcloud.core.oe.student.api.response.CalcExamScoreResp;
|
|
|
|
+import cn.com.qmth.examcloud.core.oe.student.api.response.CalcFaceBiopsyResultResp;
|
|
|
|
+import cn.com.qmth.examcloud.core.oe.student.api.response.CheckPaperInExamResp;
|
|
|
|
+import cn.com.qmth.examcloud.core.oe.student.api.response.GetExamFaceLivenessVerifiesResp;
|
|
|
|
+import cn.com.qmth.examcloud.core.oe.student.api.response.GetExamRecordDataIdsResp;
|
|
|
|
+import cn.com.qmth.examcloud.core.oe.student.api.response.GetExamRecordNumResp;
|
|
|
|
+import cn.com.qmth.examcloud.core.oe.student.api.response.GetExamRecordPaperStructResp;
|
|
|
|
+import cn.com.qmth.examcloud.core.oe.student.api.response.GetExamRecordQuestionsResp;
|
|
|
|
+import cn.com.qmth.examcloud.core.oe.student.api.response.GetFaceBiopsyResp;
|
|
|
|
+import cn.com.qmth.examcloud.core.oe.student.api.response.HandInExamResp;
|
|
|
|
+import cn.com.qmth.examcloud.core.oe.student.api.response.UpdateExamRecordDataBatchNumResp;
|
|
|
|
+import cn.com.qmth.examcloud.core.oe.student.api.response.UpdateExamRecordStatusResp;
|
|
|
|
+import cn.com.qmth.examcloud.core.oe.student.api.response.UpdatePartialExamRecordResp;
|
|
|
|
|
|
public interface ExamRecordDataCloudService extends CloudService {
|
|
public interface ExamRecordDataCloudService extends CloudService {
|
|
|
|
|
|
@@ -67,4 +91,6 @@ public interface ExamRecordDataCloudService extends CloudService {
|
|
* @return
|
|
* @return
|
|
*/
|
|
*/
|
|
UpdatePartialExamRecordResp updatePartialExamRecord(UpdatePartialExamRecordReq req);
|
|
UpdatePartialExamRecordResp updatePartialExamRecord(UpdatePartialExamRecordReq req);
|
|
|
|
+
|
|
|
|
+ CheckPaperInExamResp checkPaperInExam(CheckPaperInExamReq req);
|
|
}
|
|
}
|