@@ -70,4 +70,9 @@ public class ExtractConfigCloudServiceClient extends BasicCloudClientSupport imp
return post("extract_config/getQuestionAnswerList", req, GetQuestionAnswerResp.class);
}
+ @Override
+ public GetQuestionResp getBaseQuestion(GetQuestionReq req) {
+ return post("extract_config/getBaseQuestion", req, GetQuestionResp.class);
+ }
+
@@ -54,4 +54,11 @@ public interface ExtractConfigCloudService extends CloudService{
* @return
*/
GetQuestionAnswerResp getQuestionAnswer(GetQuestionAnswerReq req);
+ /**
+ * 根据试题id查询单个题目
+ * @param req
+ * @return
+ */
+ GetQuestionResp getBaseQuestion(GetQuestionReq req);