| | |
| | | package com.ruoyi.study.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.common.core.domain.R; |
| | | import com.ruoyi.study.domain.*; |
| | | import com.ruoyi.study.dto.StudyWeekDTO; |
| | | import com.ruoyi.study.vo.*; |
| | |
| | | * @param lookList 数据集合 |
| | | * @return 单个题组下所包含的所有图片及语音 |
| | | */ |
| | | StudyLookResultVO pictureSelectVoice(Integer week, Integer day, List<TStudyLook> lookList,Integer userId); |
| | | R<StudyLookResultVO> pictureSelectVoice(Integer week, Integer day, List<TStudyLook> lookList, Integer userId); |
| | | |
| | | /** |
| | | * 自主学习3-归纳排除 |
| | |
| | | * @param inductionList 归纳排除 |
| | | * @return 题目信息 |
| | | */ |
| | | StudyInductionResultVO induceExclude(Integer week, Integer day, List<TStudyInduction> inductionList,Integer userId); |
| | | R<StudyInductionResultVO> induceExclude(Integer week, Integer day, List<TStudyInduction> inductionList,Integer userId); |
| | | |
| | | /** |
| | | * 自主学习4-有问有答 |
| | |
| | | * @param answerList 有问有答 |
| | | * @return 题目信息 |
| | | */ |
| | | StudyAnswerResultVO questionsAndAnswers(Integer week, Integer day, List<TStudyAnswer> answerList,Integer userId); |
| | | R<StudyAnswerResultVO> questionsAndAnswers(Integer week, Integer day, List<TStudyAnswer> answerList,Integer userId); |
| | | |
| | | /** |
| | | * 自主学习5-音图相配 |
| | |
| | | * @param pair 音图相配 |
| | | * @return 题目信息 |
| | | */ |
| | | StudyPairResultVO pictureMateVoice(Integer week, Integer day, List<TStudyPair> pair,Integer userId); |
| | | R<StudyPairResultVO> pictureMateVoice(Integer week, Integer day, List<TStudyPair> pair,Integer userId); |
| | | |
| | | /** |
| | | * 计算用户当前week的学习进度 |