package com.mindskip.xzs.repository; import com.mindskip.xzs.domain.other.KeyValue; import com.mindskip.xzs.domain.Question; import com.mindskip.xzs.domain.vo.QuestionVO; import com.mindskip.xzs.viewmodel.admin.question.QuestionPageRequestVM; import com.mindskip.xzs.vo.QuestionExportVO; import com.mindskip.xzs.vo.QuestionImportVO; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import java.util.Date; import java.util.List; @Mapper public interface QuestionMapper extends BaseMapper { List page(QuestionPageRequestVM requestVM); List selectByIds(@Param("ids") List ids); List getVoByIds(@Param("ids") List ids); Integer selectAllCount(); List selectCountByDate(@Param("startTime") Date startTime,@Param("endTime") Date endTime); List getAll(); List export(@Param("query") QuestionExportVO query); }