| | |
| | | package com.mindskip.xzs.repository; |
| | | |
| | | import com.mindskip.xzs.domain.other.KeyValue; |
| | | import com.mindskip.xzs.domain.Question; |
| | | import com.mindskip.xzs.domain.other.KeyValue; |
| | | import com.mindskip.xzs.domain.vo.QuestionVO; |
| | | import com.mindskip.xzs.viewmodel.admin.question.QuestionPageRequestVM; |
| | | import com.mindskip.xzs.viewmodel.student.question.answer.QuestionPageStudentRequestVM; |
| | | import com.mindskip.xzs.viewmodel.student.question.answer.QuestionPageStudentResponseVM; |
| | | import com.mindskip.xzs.vo.QuestionExportVO; |
| | | import com.mindskip.xzs.vo.QuestionImportVO; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | |
| | | List<Question> page(QuestionPageRequestVM requestVM); |
| | | |
| | | List<Question> selectByIds(@Param("ids") List<Integer> ids); |
| | | List<QuestionVO> getVoByIds(@Param("ids") List<Integer> ids); |
| | | |
| | | Integer selectAllCount(); |
| | | |
| | |
| | | List<Question> getAll(); |
| | | |
| | | List<QuestionImportVO> export(@Param("query") QuestionExportVO query); |
| | | |
| | | List<QuestionPageStudentResponseVM> selectQuestion(QuestionPageStudentRequestVM model); |
| | | |
| | | QuestionVO selectContentById(Integer id); |
| | | |
| | | QuestionVO getAnswer(Integer id); |
| | | } |