package cn.com.qmth.scancentral.service; import cn.com.qmth.scancentral.entity.StudentPaperEntity; import cn.com.qmth.scancentral.vo.StudentPaperCountVo; import com.github.jeffreyning.mybatisplus.service.IMppService; import java.util.List; /** * 鉴权 */ public interface StudentPaperService extends IMppService { Integer countByStudentId(Long studentId); List findPaperIdByExamId(Long examId); StudentPaperEntity findByStudentIdAndPaperNumber(Long studentId, Integer number); List findByStudentId(Long studentId); List findStudentPaperCount(List studentIds); void removeByStudentId(Long studentId); StudentPaperEntity findByPaperId(Long paperId); List findStudentIdByExamId(Long examId, String subjectCode); }