package com.ycl.jxkg.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.ycl.jxkg.domain.ExamPaperQuestionCustomerAnswer; import com.ycl.jxkg.domain.other.ExamPaperAnswerUpdate; import com.ycl.jxkg.domain.other.KeyValue; import com.ycl.jxkg.vo.student.question.answer.QuestionPageStudentRequestVO; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import java.util.Date; import java.util.List; @Mapper public interface ExamPaperQuestionCustomerAnswerMapper extends BaseMapper { List selectListByPaperAnswerId(Integer id); List studentPage(QuestionPageStudentRequestVO requestVM); int insertList(List list); Integer selectAllCount(); List selectCountByDate(@Param("startTime") Date startTime, @Param("endTime") Date endTime); int updateScore(List examPaperAnswerUpdates); }