| | |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.ycl.jxkg.domain.entity.ExamPaper; |
| | | import com.ycl.jxkg.domain.exam.ExamPaperTempDTO; |
| | | import com.ycl.jxkg.domain.other.KeyValue; |
| | | import com.ycl.jxkg.domain.question.RandomQuestionDTO; |
| | | import com.ycl.jxkg.domain.vo.admin.exam.ExamPaperPageRequestVO; |
| | | import com.ycl.jxkg.domain.vo.student.dashboard.PaperFilter; |
| | | import com.ycl.jxkg.domain.vo.student.dashboard.PaperInfo; |
| | |
| | | @Mapper |
| | | public interface ExamPaperMapper extends BaseMapper<ExamPaper> { |
| | | |
| | | List<ExamPaperTempDTO> page(ExamPaperPageRequestVO requestVM); |
| | | List<ExamPaper> page(ExamPaperPageRequestVO requestVM); |
| | | |
| | | List<ExamPaper> taskExamPage(ExamPaperPageRequestVO requestVM); |
| | | |
| | |
| | | int updateTaskPaper(@Param("taskId") Integer taskId,@Param("paperIds") List<Integer> paperIds); |
| | | |
| | | int clearTaskPaper(@Param("paperIds") List<Integer> paperIds); |
| | | |
| | | |
| | | } |