|
@@ -1,10 +1,29 @@
|
|
package cn.com.qmth.examcloud.core.oe.student.client;
|
|
package cn.com.qmth.examcloud.core.oe.student.client;
|
|
|
|
|
|
-import cn.com.qmth.examcloud.core.oe.student.api.ExamRecordDataCloudService;
|
|
|
|
-import cn.com.qmth.examcloud.core.oe.student.api.request.*;
|
|
|
|
-import cn.com.qmth.examcloud.core.oe.student.api.response.*;
|
|
|
|
import org.springframework.stereotype.Service;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
|
|
+import cn.com.qmth.examcloud.core.oe.student.api.ExamRecordDataCloudService;
|
|
|
|
+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.GetExamFaceLivenessVerifiesReq;
|
|
|
|
+import cn.com.qmth.examcloud.core.oe.student.api.request.GetExamRecordDataIdsReq;
|
|
|
|
+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.response.CalcExamScoreResp;
|
|
|
|
+import cn.com.qmth.examcloud.core.oe.student.api.response.CalcFaceBiopsyResultResp;
|
|
|
|
+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.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;
|
|
|
|
+
|
|
@Service("examRecordDataCloudService")
|
|
@Service("examRecordDataCloudService")
|
|
public class ExamRecordDataCloudServiceClient extends AbstractCloudClientSupport
|
|
public class ExamRecordDataCloudServiceClient extends AbstractCloudClientSupport
|
|
implements
|
|
implements
|
|
@@ -90,5 +109,10 @@ public class ExamRecordDataCloudServiceClient extends AbstractCloudClientSupport
|
|
return post("examRecordData/handInExam", req, HandInExamResp.class);
|
|
return post("examRecordData/handInExam", req, HandInExamResp.class);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @Override
|
|
|
|
+ public UpdateExamRecordStatusResp updateExamRecordStatus(UpdateExamRecordStatusReq req) {
|
|
|
|
+ return post("examRecordData/updateExamRecordStatus", req, UpdateExamRecordStatusResp.class);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
|
|
}
|
|
}
|