BatchStudentMappingService.java
460 Bytes
package com.meishu.service;
import com.meishu.model.BatchStudentMappingDO;
import com.baomidou.mybatisplus.extension.service.IService;
import com.meishu.vo.student.BatchStudentsVO;
import java.util.List;
/**
* <p>
* 服务类
* </p>
*
* @author Tuyp
* @since 2023-07-14
*/
public interface BatchStudentMappingService extends IService<BatchStudentMappingDO> {
List<BatchStudentsVO> batchStudents(BatchStudentMappingDO batchStudentMappingDO);
}