|
@@ -62,6 +62,11 @@ public class QuestionInfoServiceImpl extends ServiceImpl<QuestionInfoMapper, Que
|
|
|
return questionInfoMapper.selectQuestionInfoListIds(ids);
|
|
|
}
|
|
|
|
|
|
+ @Override
|
|
|
+ public List<QuestionInfo> selectQuestionInfoListByYdtIds(Long[] ids) {
|
|
|
+ return questionInfoMapper.selectQuestionInfoListByYdtIds(ids);
|
|
|
+ }
|
|
|
+
|
|
|
@Override
|
|
|
public List<QuestionInfoJxVO> selectJxQuestionInfo(QuestionInfoFlDTO questionInfoFlDTO) {
|
|
|
return questionInfoMapper.selectJxQuestionInfo(questionInfoFlDTO);
|
|
@@ -150,7 +155,7 @@ public class QuestionInfoServiceImpl extends ServiceImpl<QuestionInfoMapper, Que
|
|
|
//旧判断20题
|
|
|
questionInfoTestDTO.setQuestionType(1);
|
|
|
questionInfoTestDTO.setNum(20);
|
|
|
- questionInfoTestDTO.setExcellIssueName("必学");
|
|
|
+ questionInfoTestDTO.setExcellIssueName("必");
|
|
|
List<QuestionInfo> list1 = questionInfoMapper.selectTestQuestionInfoList(questionInfoTestDTO);
|
|
|
//新判断20题
|
|
|
questionInfoTestDTO.setQuestionType(1);
|
|
@@ -160,7 +165,7 @@ public class QuestionInfoServiceImpl extends ServiceImpl<QuestionInfoMapper, Que
|
|
|
//旧选择30题
|
|
|
questionInfoTestDTO.setQuestionType(2);
|
|
|
questionInfoTestDTO.setNum(30);
|
|
|
- questionInfoTestDTO.setExcellIssueName("必学");
|
|
|
+ questionInfoTestDTO.setExcellIssueName("必");
|
|
|
List<QuestionInfo> list3 = questionInfoMapper.selectTestQuestionInfoList(questionInfoTestDTO);
|
|
|
//新选择30题
|
|
|
questionInfoTestDTO.setQuestionType(2);
|