|
@@ -99,4 +99,14 @@ public class CommonBankController extends BaseController {
|
|
|
List<ExamQuestionVo> list = iExamQuestionService.getAppList(bo);
|
|
|
return AjaxResult.success(list);
|
|
|
}
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 查询随机练习试卷题目列表
|
|
|
+ */
|
|
|
+ @ApiOperation("查询随机练习试卷题目列表")
|
|
|
+ @GetMapping("/question/temp/list")
|
|
|
+ public AjaxResult<List<ExamQuestionVo>> questionTempList(ExamQuestionQueryBo bo) {
|
|
|
+ List<ExamQuestionVo> list = iExamQuestionService.getAppTempList(bo);
|
|
|
+ return AjaxResult.success(list);
|
|
|
+ }
|
|
|
}
|