BatchStudentMappingMapper.java 537 Bytes
package com.meishu.mapper;

import com.meishu.model.BatchStudentMappingDO;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.meishu.vo.student.BatchStudentsVO;
import org.springframework.stereotype.Repository;

import java.util.List;

/**
 * <p>
 * Mapper 接口
 * </p>
 *
 * @author Tuyp
 * @since 2023-07-14
 */
@Repository
public interface BatchStudentMappingMapper extends BaseMapper<BatchStudentMappingDO> {

    List<BatchStudentsVO> batchStudents(Long batchId);

    List<Long> batchStudentIds(Long batchId);

}