| | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.study.domain.*; |
| | | import com.ruoyi.study.dto.StudyWeekDTO; |
| | | import com.ruoyi.study.vo.*; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | * @param studyListens 数据集合 |
| | | * @return 单个题组下所包含的所有图片及语音 |
| | | */ |
| | | Map<String, Object> listenSelectPicture(Integer week, Integer day, List<TStudyListen> studyListens); |
| | | StudyListenResultVO listenSelectPicture(Integer week, Integer day, List<TStudyListen> studyListens); |
| | | |
| | | /** |
| | | * 自主游戏1-超级听力 |
| | |
| | | * @param lookList 数据集合 |
| | | * @return 单个题组下所包含的所有图片及语音 |
| | | */ |
| | | Map<String, Object> pictureSelectVoice(Integer week, Integer day, List<TStudyLook> lookList); |
| | | StudyLookResultVO pictureSelectVoice(Integer week, Integer day, List<TStudyLook> lookList); |
| | | |
| | | /** |
| | | * 自主学习3-归纳排除 |
| | |
| | | * @param inductionList 归纳排除 |
| | | * @return 题目信息 |
| | | */ |
| | | Map<String, Object> induceExclude(Integer week, Integer day, List<TStudyInduction> inductionList); |
| | | StudyInductionResultVO induceExclude(Integer week, Integer day, List<TStudyInduction> inductionList); |
| | | |
| | | /** |
| | | * 自主学习4-有问有答 |
| | |
| | | * @param answerList 有问有答 |
| | | * @return 题目信息 |
| | | */ |
| | | Map<String, Object> questionsAndAnswers(Integer week, Integer day, List<TStudyAnswer> answerList); |
| | | StudyAnswerResultVO questionsAndAnswers(Integer week, Integer day, List<TStudyAnswer> answerList); |
| | | |
| | | /** |
| | | * 自主学习5-音图相配 |
| | |
| | | * @param pair 音图相配 |
| | | * @return 题目信息 |
| | | */ |
| | | Map<String, Object> pictureMateVoice(Integer week, Integer day, TStudyPair pair); |
| | | StudyPairResultVO pictureMateVoice(Integer week, Integer day, TStudyPair pair); |
| | | |
| | | } |