BatchExamStudentsService.java 728 Bytes
package com.meishu.service;

import com.meishu.model.BatchExamStudentsDO;
import com.baomidou.mybatisplus.extension.service.IService;
import com.meishu.vo.exam.BatchExamStudentScoreVO;
import com.meishu.vo.paper.PapersVO;
import com.meishu.vo.student.StudentExamsVO;

import java.util.List;

/**
 * <p>
 * 学生考试映射表 服务类
 * </p>
 *
 * @author Tuyp
 * @since 2023-07-11
 */
public interface BatchExamStudentsService extends IService<BatchExamStudentsDO> {

    List<PapersVO> exams(BatchExamStudentsDO studentExamsDO)throws Exception;

    List<StudentExamsVO> studentExams(BatchExamStudentsDO studentExamsDO);

    List<BatchExamStudentScoreVO> batchExamStudentScore(BatchExamStudentsDO batchExamStudentsDO);
}