@@ -18,5 +18,6 @@ import java.util.List;
public interface ExamQuestionMapper extends BaseMapper<ExamQuestion> {
List<ExamQuestionVo> getList(ExamQuestionQueryBo bo);
List<ExamQuestionVo> getAppList(ExamQuestionQueryBo bo);
+ List<ExamQuestionVo> getAppTempList(ExamQuestionQueryBo bo);
}
@@ -61,7 +61,7 @@ public class ExamQuestionServiceImpl extends ServiceImpl<ExamQuestionMapper, Exa
@Override
public List<ExamQuestionVo> getAppTempList(ExamQuestionQueryBo bo) {
- return examQuestionMapper.getAppList(bo);
+ return examQuestionMapper.getAppTempList(bo);
/**