|
@@ -5,14 +5,15 @@ import org.springframework.stereotype.Service;
|
|
|
import cn.com.qmth.examcloud.marking.api.StudentPaperCloudService;
|
|
|
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 StudentPaperCloudServiceClient
|
|
|
- * @Description TODO
|
|
|
* @Author nikang
|
|
|
* @Date 2018/9/20 18:25
|
|
|
* @Version 3.0
|
|
@@ -36,4 +37,9 @@ public class StudentPaperCloudServiceClient extends AbstractCloudClientSupport i
|
|
|
public GetBasePaperListResp getBasePaperList(GetBasePaperListReq req) {
|
|
|
return post("studentPaper/getBasePaperList", req, GetBasePaperListResp.class);
|
|
|
}
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public GetSubjectiveScoreResp subjectiveScore(GetSubjectiveScoreReq req) {
|
|
|
+ return post("studentPaper/subjective/score", req, GetSubjectiveScoreResp.class);
|
|
|
+ }
|
|
|
}
|