| | |
| | | */ |
| | | package org.springblade.modules.exam.service; |
| | | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.springblade.modules.exam.entity.ExamPaper; |
| | | import org.springblade.modules.exam.vo.ExamPaperSubjectVO; |
| | | import org.springblade.modules.exam.vo.ExamPaperVO; |
| | | import org.springblade.modules.exam.vo.ExamScoreVO; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | */ |
| | | public interface ExamPaperService extends IService<ExamPaper> { |
| | | |
| | | IPage<ExamPaperVO> selectExamPaperPage(IPage<ExamScoreVO> page, ExamPaperVO exam); |
| | | |
| | | ExamPaperSubjectVO queryPagerSubject(ExamPaper paper); |
| | | |
| | | /** |