package com.mindskip.xzs.repository; import com.mindskip.xzs.domain.other.KeyValue; import com.mindskip.xzs.domain.Question; import com.mindskip.xzs.viewmodel.admin.question.QuestionPageRequestVM; 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); Integer selectAllCount(); List selectCountByDate(@Param("startTime") Date startTime,@Param("endTime") Date endTime); List getAll(); }