From bb07a28494e82c6ace22a555eea173aac0443fd2 Mon Sep 17 00:00:00 2001 From: yz <3614508250@qq.com> Date: Tue, 16 Jul 2024 17:35:15 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=8C=E4=BA=8B=E6=8E=A5=E5=8F=A3=E9=9C=80?= =?UTF-8?q?=E6=B1=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../controller/api/ObjectiveApi.java | 56 +++++++++++++++++++ 1 file changed, 56 insertions(+) diff --git a/src/main/java/com/sztzjy/resource_center/controller/api/ObjectiveApi.java b/src/main/java/com/sztzjy/resource_center/controller/api/ObjectiveApi.java index f450ef3..27c64f0 100644 --- a/src/main/java/com/sztzjy/resource_center/controller/api/ObjectiveApi.java +++ b/src/main/java/com/sztzjy/resource_center/controller/api/ObjectiveApi.java @@ -311,4 +311,60 @@ public class ObjectiveApi { List sysObjectiveQuestions = sysObjectiveQuestionMapper.selectByExample(example); return sysObjectiveQuestions; } + + /** + * 根据章节ID 随机获取十道 内置 题目 + * 方法名:selectRandomObjectiveByChapterId + * 参数:chapterId + * return:List + */ + + /** + * 根据章节ID 查询所有 内置 题目 + * 方法名:selectObjectQuestionListByChapterId + * 参数:chapterId + * return:List + */ + + /** + * 随机获取35道 内置 单选题 + * 方法名:selectRandomObjectiveSingle + * 参数:systemOwner + * return:List + */ + + /** + * 随机获取5道 内置 多选题 + * 方法名:selectRandomObjectiveSingle + * 参数:systemOwner + * return:List + */ + + /** + * 随机获取10道 内置 判断题 + * 方法名:selectRandomObjectiveJudge + * 参数:systemOwner + * return:List + */ + + /** + * 获取客观题库单选题数量 + * 方法名:selectCountSingle + * 参数:schoolId systemOwner + * return:Integer + */ + + /** + * 获取客观题库多选题数量 + * 方法名:selectCountMany + * 参数:schoolId systemOwner + * return:Integer + */ + + /** + * 获取客观题库判断数量 + * 方法名:selectCountJudge + * 参数:schoolId systemOwner + * return:Integer + */ }