|
@@ -1,35 +1,38 @@
|
|
-package cn.com.qmth.examcloud.marking.api;
|
|
|
|
-
|
|
|
|
-import cn.com.qmth.examcloud.api.commons.CloudService;
|
|
|
|
-import cn.com.qmth.examcloud.marking.api.request.GetBasePaperListReq;
|
|
|
|
-import cn.com.qmth.examcloud.marking.api.request.GetStudentPaperReq;
|
|
|
|
-import cn.com.qmth.examcloud.marking.api.request.GetSubjectiveScoreReq;
|
|
|
|
-import cn.com.qmth.examcloud.marking.api.request.SaveStudentPaperReq;
|
|
|
|
-import cn.com.qmth.examcloud.marking.api.response.GetBasePaperListResp;
|
|
|
|
-import cn.com.qmth.examcloud.marking.api.response.GetStudentPaperResp;
|
|
|
|
-import cn.com.qmth.examcloud.marking.api.response.GetSubjectiveScoreResp;
|
|
|
|
-import cn.com.qmth.examcloud.marking.api.response.SaveStudentPaperResp;
|
|
|
|
-
|
|
|
|
-/**
|
|
|
|
- * @ClassName StudentPaperCloudService
|
|
|
|
- * @Description TODO
|
|
|
|
- * @Author nikang
|
|
|
|
- * @Date 2018/9/20 18:19
|
|
|
|
- * @Version 3.0
|
|
|
|
- */
|
|
|
|
-public interface StudentPaperCloudService extends CloudService {
|
|
|
|
-
|
|
|
|
- /**
|
|
|
|
- * 获取下一张待评试卷(或获取指定答卷)
|
|
|
|
- */
|
|
|
|
- GetStudentPaperResp getStudentPaper(GetStudentPaperReq req);
|
|
|
|
-
|
|
|
|
- /**
|
|
|
|
- * 批量保存考生
|
|
|
|
- */
|
|
|
|
- SaveStudentPaperResp saveStudentPaper(SaveStudentPaperReq req);
|
|
|
|
-
|
|
|
|
- GetBasePaperListResp getBasePaperList(GetBasePaperListReq req);
|
|
|
|
-
|
|
|
|
- GetSubjectiveScoreResp subjectiveScore(GetSubjectiveScoreReq req);
|
|
|
|
-}
|
|
|
|
|
|
+package cn.com.qmth.examcloud.marking.api;
|
|
|
|
+
|
|
|
|
+import cn.com.qmth.examcloud.api.commons.CloudService;
|
|
|
|
+import cn.com.qmth.examcloud.marking.api.request.GetBasePaperListReq;
|
|
|
|
+import cn.com.qmth.examcloud.marking.api.request.GetStudentPaperReq;
|
|
|
|
+import cn.com.qmth.examcloud.marking.api.request.GetSubjectiveScoreReq;
|
|
|
|
+import cn.com.qmth.examcloud.marking.api.request.SaveStudentPaperReq;
|
|
|
|
+import cn.com.qmth.examcloud.marking.api.request.UpdateObjectiveScoreReq;
|
|
|
|
+import cn.com.qmth.examcloud.marking.api.response.GetBasePaperListResp;
|
|
|
|
+import cn.com.qmth.examcloud.marking.api.response.GetStudentPaperResp;
|
|
|
|
+import cn.com.qmth.examcloud.marking.api.response.GetSubjectiveScoreResp;
|
|
|
|
+import cn.com.qmth.examcloud.marking.api.response.SaveStudentPaperResp;
|
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ * @ClassName StudentPaperCloudService
|
|
|
|
+ * @Description TODO
|
|
|
|
+ * @Author nikang
|
|
|
|
+ * @Date 2018/9/20 18:19
|
|
|
|
+ * @Version 3.0
|
|
|
|
+ */
|
|
|
|
+public interface StudentPaperCloudService extends CloudService {
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 获取下一张待评试卷(或获取指定答卷)
|
|
|
|
+ */
|
|
|
|
+ GetStudentPaperResp getStudentPaper(GetStudentPaperReq req);
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 批量保存考生
|
|
|
|
+ */
|
|
|
|
+ SaveStudentPaperResp saveStudentPaper(SaveStudentPaperReq req);
|
|
|
|
+
|
|
|
|
+ GetBasePaperListResp getBasePaperList(GetBasePaperListReq req);
|
|
|
|
+
|
|
|
|
+ GetSubjectiveScoreResp subjectiveScore(GetSubjectiveScoreReq req);
|
|
|
|
+
|
|
|
|
+ void updateObjectiveScore(UpdateObjectiveScoreReq req);
|
|
|
|
+}
|