BatchExamMapper.java 433 Bytes
package com.meishu.mapper;

import com.meishu.model.BatchExamDO;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.meishu.vo.exam.ExamsVO;
import org.springframework.stereotype.Repository;

import java.util.List;

/**
 * <p>
 * Mapper 接口
 * </p>
 *
 * @author Tuyp
 * @since 2023-07-12
 */
@Repository
public interface BatchExamMapper extends BaseMapper<BatchExamDO> {

    List<ExamsVO> exams(Long batchId);

}