|
@@ -0,0 +1,22 @@
|
|
|
+package cn.com.qmth.examcloud.core.oe.admin.api;
|
|
|
+
|
|
|
+import cn.com.qmth.examcloud.commons.web.cloud.api.CloudService;
|
|
|
+import cn.com.qmth.examcloud.core.oe.admin.api.response.ExamRecordResp;
|
|
|
+
|
|
|
+/**
|
|
|
+ *
|
|
|
+ * @author chenken
|
|
|
+ * @date 2018年9月11日 下午4:23:43
|
|
|
+ * @company QMTH
|
|
|
+ * @description 考试记录相关
|
|
|
+ */
|
|
|
+public interface ExamRecordCloudService extends CloudService{
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 统计考试记录数量
|
|
|
+ * @param examId 考试ID
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public ExamRecordResp countExamRecordByExamId(Long examId);
|
|
|
+
|
|
|
+}
|