|
@@ -1,14 +1,34 @@
|
|
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.CalcExamScoreReq;
|
|
|
|
+import cn.com.qmth.examcloud.core.oe.student.api.request.CalcFaceBiopsyResultReq;
|
|
import cn.com.qmth.examcloud.core.oe.student.api.request.GetExamRecordDataIdsReq;
|
|
import cn.com.qmth.examcloud.core.oe.student.api.request.GetExamRecordDataIdsReq;
|
|
import cn.com.qmth.examcloud.core.oe.student.api.request.UpdateExamRecordDataBatchNumReq;
|
|
import cn.com.qmth.examcloud.core.oe.student.api.request.UpdateExamRecordDataBatchNumReq;
|
|
|
|
+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.GetExamRecordDataIdsResp;
|
|
import cn.com.qmth.examcloud.core.oe.student.api.response.GetExamRecordDataIdsResp;
|
|
import cn.com.qmth.examcloud.core.oe.student.api.response.UpdateExamRecordDataBatchNumResp;
|
|
import cn.com.qmth.examcloud.core.oe.student.api.response.UpdateExamRecordDataBatchNumResp;
|
|
|
|
|
|
public interface ExamRecordDataCloudService extends CloudService {
|
|
public interface ExamRecordDataCloudService extends CloudService {
|
|
|
|
|
|
- public GetExamRecordDataIdsResp getExamRecordDataIds(GetExamRecordDataIdsReq req);
|
|
+ GetExamRecordDataIdsResp getExamRecordDataIds(GetExamRecordDataIdsReq req);
|
|
-
|
|
+
|
|
- public UpdateExamRecordDataBatchNumResp updateExamRecordDataBatchNum(UpdateExamRecordDataBatchNumReq req);
|
|
+ UpdateExamRecordDataBatchNumResp updateExamRecordDataBatchNum(UpdateExamRecordDataBatchNumReq req);
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ * 计算活体检测结果
|
|
|
|
+ *
|
|
|
|
+ * @param req
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
|
|
+ CalcFaceBiopsyResultResp calcFaceBiopsyResult(CalcFaceBiopsyResultReq req);
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ * 计算考试分数
|
|
|
|
+ *
|
|
|
|
+ * @param req
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
|
|
+ CalcExamScoreResp calcExamScore(CalcExamScoreReq req);
|
|
}
|
|
}
|