|
@@ -8,11 +8,13 @@ import cn.com.qmth.examcloud.core.questions.api.request.GetPaperReq;
|
|
import cn.com.qmth.examcloud.core.questions.api.request.GetQuestionAnswerReq;
|
|
import cn.com.qmth.examcloud.core.questions.api.request.GetQuestionAnswerReq;
|
|
import cn.com.qmth.examcloud.core.questions.api.request.GetQuestionListReq;
|
|
import cn.com.qmth.examcloud.core.questions.api.request.GetQuestionListReq;
|
|
import cn.com.qmth.examcloud.core.questions.api.request.GetQuestionReq;
|
|
import cn.com.qmth.examcloud.core.questions.api.request.GetQuestionReq;
|
|
|
|
+import cn.com.qmth.examcloud.core.questions.api.request.GetRandomPaperReq;
|
|
import cn.com.qmth.examcloud.core.questions.api.response.GetBasePaperResp;
|
|
import cn.com.qmth.examcloud.core.questions.api.response.GetBasePaperResp;
|
|
import cn.com.qmth.examcloud.core.questions.api.response.GetPaperResp;
|
|
import cn.com.qmth.examcloud.core.questions.api.response.GetPaperResp;
|
|
import cn.com.qmth.examcloud.core.questions.api.response.GetQuestionAnswerResp;
|
|
import cn.com.qmth.examcloud.core.questions.api.response.GetQuestionAnswerResp;
|
|
import cn.com.qmth.examcloud.core.questions.api.response.GetQuestionListResp;
|
|
import cn.com.qmth.examcloud.core.questions.api.response.GetQuestionListResp;
|
|
import cn.com.qmth.examcloud.core.questions.api.response.GetQuestionResp;
|
|
import cn.com.qmth.examcloud.core.questions.api.response.GetQuestionResp;
|
|
|
|
+import cn.com.qmth.examcloud.core.questions.api.response.GetRandomPaperResp;
|
|
|
|
|
|
/**
|
|
/**
|
|
* @author weiwenhai
|
|
* @author weiwenhai
|
|
@@ -62,4 +64,8 @@ public class ExtractConfigCloudServiceClient extends AbstractCloudClientSupport
|
|
return post("extract_config/getQuestionStructure", req, GetQuestionListResp.class);
|
|
return post("extract_config/getQuestionStructure", req, GetQuestionListResp.class);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @Override
|
|
|
|
+ public GetRandomPaperResp getRandomPaper(GetRandomPaperReq req) {
|
|
|
|
+ return post("default_paper/randompaper", req, GetRandomPaperResp.class);
|
|
|
|
+ }
|
|
}
|
|
}
|