|
@@ -1,14 +1,8 @@
|
|
|
package cn.com.qmth.examcloud.core.oe.admin.api;
|
|
|
|
|
|
import cn.com.qmth.examcloud.api.commons.CloudService;
|
|
|
-import cn.com.qmth.examcloud.core.oe.admin.api.request.CheckExamIsStartedReq;
|
|
|
-import cn.com.qmth.examcloud.core.oe.admin.api.request.GetExamPhotoVerifyDataReq;
|
|
|
-import cn.com.qmth.examcloud.core.oe.admin.api.request.GetToBeMarkExamRecordReq;
|
|
|
-import cn.com.qmth.examcloud.core.oe.admin.api.request.QueryExamRecordForSelectScoreReq;
|
|
|
-import cn.com.qmth.examcloud.core.oe.admin.api.response.CheckExamIsStartedResp;
|
|
|
-import cn.com.qmth.examcloud.core.oe.admin.api.response.GetExamPhotoVerifyDataResp;
|
|
|
-import cn.com.qmth.examcloud.core.oe.admin.api.response.GetToBeMarkExamRecordResp;
|
|
|
-import cn.com.qmth.examcloud.core.oe.admin.api.response.QueryExamRecordForSelectScoreResp;
|
|
|
+import cn.com.qmth.examcloud.core.oe.admin.api.request.*;
|
|
|
+import cn.com.qmth.examcloud.core.oe.admin.api.response.*;
|
|
|
|
|
|
/**
|
|
|
*
|
|
@@ -24,27 +18,27 @@ public interface ExamRecordCloudService extends CloudService{
|
|
|
* @param examRecordReq
|
|
|
* @return
|
|
|
*/
|
|
|
- public CheckExamIsStartedResp checkExamIsStarted(CheckExamIsStartedReq examRecordReq);
|
|
|
+ CheckExamIsStartedResp checkExamIsStarted(CheckExamIsStartedReq examRecordReq);
|
|
|
/**
|
|
|
* 查询考试记录-供exchange使用
|
|
|
* @param req
|
|
|
* @return
|
|
|
*/
|
|
|
- public QueryExamRecordForSelectScoreResp queryExamRecordForSelectScoreByScoreId(QueryExamRecordForSelectScoreReq req);
|
|
|
+ QueryExamRecordForSelectScoreResp queryExamRecordForSelectScoreByScoreId(QueryExamRecordForSelectScoreReq req);
|
|
|
|
|
|
/**
|
|
|
* 查询考试记录-供exchange使用
|
|
|
* @param req
|
|
|
* @return
|
|
|
*/
|
|
|
- public QueryExamRecordForSelectScoreResp queryExamRecordForSelectScoreByExamStudentId(QueryExamRecordForSelectScoreReq req);
|
|
|
+ QueryExamRecordForSelectScoreResp queryExamRecordForSelectScoreByExamStudentId(QueryExamRecordForSelectScoreReq req);
|
|
|
|
|
|
/**
|
|
|
* 查询照片数据
|
|
|
* @param req
|
|
|
* @return
|
|
|
*/
|
|
|
- public GetExamPhotoVerifyDataResp getExamPhotoVerifyData(GetExamPhotoVerifyDataReq req);
|
|
|
+ GetExamPhotoVerifyDataResp getExamPhotoVerifyData(GetExamPhotoVerifyDataReq req);
|
|
|
|
|
|
/**
|
|
|
* 获取待阅卷的考试记录
|
|
@@ -52,4 +46,11 @@ public interface ExamRecordCloudService extends CloudService{
|
|
|
* @return
|
|
|
*/
|
|
|
GetToBeMarkExamRecordResp getToBeMarkExamRecord(GetToBeMarkExamRecordReq req);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 获取部分考试记录数据
|
|
|
+ * @param req
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ GetPartialExamRecordDataResp getPartialExamRecordData(GetPartialExamRecordDataReq req);
|
|
|
}
|