File was renamed from src/main/java/com/ycl/jxkg/mapper/ExamPaperQuestionCustomerAnswerMapper.java |
| | |
| | | package com.ycl.jxkg.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.ycl.jxkg.domain.entity.ExamPaperQuestionCustomerAnswer; |
| | | import com.ycl.jxkg.domain.entity.ExamPaperScoreDetail; |
| | | import com.ycl.jxkg.domain.other.ExamPaperAnswerUpdate; |
| | | import com.ycl.jxkg.domain.other.KeyValue; |
| | | import com.ycl.jxkg.domain.vo.student.question.answer.QuestionPageStudentRequestVO; |
| | |
| | | import java.util.List; |
| | | |
| | | @Mapper |
| | | public interface ExamPaperQuestionCustomerAnswerMapper extends BaseMapper<ExamPaperQuestionCustomerAnswer> { |
| | | public interface ExamPaperScoreDetailMapper extends BaseMapper<ExamPaperScoreDetail> { |
| | | |
| | | List<ExamPaperQuestionCustomerAnswer> selectListByPaperAnswerId(Integer id); |
| | | List<ExamPaperScoreDetail> selectListByPaperAnswerId(Integer id); |
| | | |
| | | List<ExamPaperQuestionCustomerAnswer> studentPage(QuestionPageStudentRequestVO requestVM); |
| | | List<ExamPaperScoreDetail> studentPage(QuestionPageStudentRequestVO requestVM); |
| | | |
| | | int insertList(List<ExamPaperQuestionCustomerAnswer> list); |
| | | int insertList(List<ExamPaperScoreDetail> list); |
| | | |
| | | Integer selectAllCount(); |
| | | |