| | |
| | | import com.mindskip.xzs.vo.QuestionExportData; |
| | | import com.mindskip.xzs.vo.QuestionExportVO; |
| | | import com.mindskip.xzs.vo.QuestionImportVO; |
| | | import com.mindskip.xzs.vo.QuestionSubjectVO; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | |
| | | * @param query |
| | | * @return |
| | | */ |
| | | List<QuestionExportData> exportData(QuestionExportVO query); |
| | | List<QuestionImportVO> exportData(QuestionExportVO query); |
| | | |
| | | PageInfo<QuestionPageStudentResponseVM> selectQuestion(QuestionPageStudentRequestVM model); |
| | | |
| | |
| | | * @return |
| | | */ |
| | | Integer countQuestionByTitle(String title); |
| | | |
| | | /** |
| | | * 根据题干和课目查找是否存在该题 |
| | | * |
| | | * @param title |
| | | * @param subjectId |
| | | * @return |
| | | */ |
| | | List<QuestionSubjectVO> countQuestionByTitleAndSubject(String title, Integer subjectId); |
| | | } |