|
@@ -1,33 +1,15 @@
|
|
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.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.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
|
|
|
|
- ExamRecordDataCloudService {
|
|
|
|
|
|
+ implements
|
|
|
|
+ ExamRecordDataCloudService {
|
|
|
|
|
|
/**
|
|
/**
|
|
*
|
|
*
|
|
@@ -114,5 +96,14 @@ public class ExamRecordDataCloudServiceClient extends AbstractCloudClientSupport
|
|
return post("examRecordData/updateExamRecordStatus", req, UpdateExamRecordStatusResp.class);
|
|
return post("examRecordData/updateExamRecordStatus", req, UpdateExamRecordStatusResp.class);
|
|
}
|
|
}
|
|
|
|
|
|
-
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 获取考试记录数量
|
|
|
|
+ *
|
|
|
|
+ * @param req
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
|
|
+ @Override
|
|
|
|
+ public GetExamRecordNumResp getExamRecordNum(GetExamRecordNumReq req) {
|
|
|
|
+ return post("examRecordData/getExamRecordNum", req, GetExamRecordNumResp.class);
|
|
|
|
+ }
|
|
}
|
|
}
|