| | |
| | | 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.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | |
| | | * @param query |
| | | * @return |
| | | */ |
| | | List<QuestionExportData> exportData(@Param("query") QuestionExportVO query); |
| | | List<QuestionImportVO> exportData(@Param("query") QuestionExportVO query); |
| | | |
| | | List<QuestionImportVO> export(@Param("query") QuestionExportVO query); |
| | | |
| | |
| | | * @return |
| | | */ |
| | | Integer countQuestionByTitle(@Param("title") String title); |
| | | |
| | | /** |
| | | * 题干、课目相同的数量 |
| | | * |
| | | * @param title |
| | | * @param subjectId |
| | | * @return |
| | | */ |
| | | List<QuestionSubjectVO> countQuestionByTitleAndSubject(@Param("title") String title, @Param("subjectId") Integer subjectId); |
| | | } |