chenken 6 роки тому
батько
коміт
9265750604

+ 7 - 2
examcloud-core-oe-admin-api-client/src/main/java/cn/com/qmth/examcloud/core/oe/admin/client/ExamRecordCloudServiceClient.java

@@ -42,8 +42,13 @@ public class ExamRecordCloudServiceClient extends AdminCloudClientSupport implem
 	}
 
 	@Override
-	public QueryExamRecordForSelectScoreResp queryExamRecordForSelectScore(QueryExamRecordForSelectScoreReq req) {
-		return post("examRecord/queryExamRecordForSelectScore", req, QueryExamRecordForSelectScoreResp.class);
+	public QueryExamRecordForSelectScoreResp queryExamRecordForSelectScoreByScoreId(QueryExamRecordForSelectScoreReq req) {
+		return post("examRecord/queryExamRecordForSelectScoreByScoreId", req, QueryExamRecordForSelectScoreResp.class);
+	}
+
+	@Override
+	public QueryExamRecordForSelectScoreResp queryExamRecordForSelectScoreByStudentId(QueryExamRecordForSelectScoreReq req) {
+		return post("examRecord/queryExamRecordForSelectScoreByStudentId", req, QueryExamRecordForSelectScoreResp.class);
 	}
 
 }

+ 8 - 1
examcloud-core-oe-admin-api/src/main/java/cn/com/qmth/examcloud/core/oe/admin/api/ExamRecordCloudService.java

@@ -26,5 +26,12 @@ public interface ExamRecordCloudService extends CloudService{
 	 * @param req
 	 * @return
 	 */
-	public QueryExamRecordForSelectScoreResp queryExamRecordForSelectScore(QueryExamRecordForSelectScoreReq req);
+	public QueryExamRecordForSelectScoreResp queryExamRecordForSelectScoreByScoreId(QueryExamRecordForSelectScoreReq req);
+	
+	/**
+	 * 查询考试记录-供exchange使用
+	 * @param req
+	 * @return
+	 */
+	public QueryExamRecordForSelectScoreResp queryExamRecordForSelectScoreByStudentId(QueryExamRecordForSelectScoreReq req);
 }