|
@@ -1,35 +1,16 @@
|
|
|
package cn.com.qmth.examcloud.core.oe.student.api;
|
|
|
|
|
|
import cn.com.qmth.examcloud.api.commons.CloudService;
|
|
|
-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;
|
|
|
+import cn.com.qmth.examcloud.core.oe.student.api.request.*;
|
|
|
+import cn.com.qmth.examcloud.core.oe.student.api.response.*;
|
|
|
|
|
|
public interface ExamRecordDataCloudService extends CloudService {
|
|
|
|
|
|
+ /**
|
|
|
+ * 查询是否存在考试记录
|
|
|
+ */
|
|
|
+ ExistExamRecordDataResp existExamRecordData(ExistExamRecordDataReq req);
|
|
|
+
|
|
|
GetExamRecordDataIdsResp getExamRecordDataIds(GetExamRecordDataIdsReq req);
|
|
|
|
|
|
UpdateExamRecordDataBatchNumResp updateExamRecordDataBatchNum(UpdateExamRecordDataBatchNumReq req);
|
|
@@ -52,6 +33,7 @@ public interface ExamRecordDataCloudService extends CloudService {
|
|
|
|
|
|
/**
|
|
|
* 获取旧活体检测结果
|
|
|
+ *
|
|
|
* @param req
|
|
|
* @return
|
|
|
*/
|
|
@@ -59,6 +41,7 @@ public interface ExamRecordDataCloudService extends CloudService {
|
|
|
|
|
|
/**
|
|
|
* 获取新活检
|
|
|
+ *
|
|
|
* @param req
|
|
|
* @return
|
|
|
*/
|
|
@@ -80,6 +63,7 @@ public interface ExamRecordDataCloudService extends CloudService {
|
|
|
|
|
|
/**
|
|
|
* 获取考试记录数量
|
|
|
+ *
|
|
|
* @param req
|
|
|
* @return
|
|
|
*/
|
|
@@ -87,10 +71,12 @@ public interface ExamRecordDataCloudService extends CloudService {
|
|
|
|
|
|
/**
|
|
|
* 更新部分考试数据
|
|
|
+ *
|
|
|
* @param req
|
|
|
* @return
|
|
|
*/
|
|
|
UpdatePartialExamRecordResp updatePartialExamRecord(UpdatePartialExamRecordReq req);
|
|
|
-
|
|
|
+
|
|
|
CheckPaperInExamResp checkPaperInExam(CheckPaperInExamReq req);
|
|
|
+
|
|
|
}
|