BatchStudentMappingServiceImpl.java
843 Bytes
package com.meishu.service.impl;
import com.meishu.common.ResponseData;
import com.meishu.model.BatchStudentMappingDO;
import com.meishu.mapper.BatchStudentMappingMapper;
import com.meishu.service.BatchStudentMappingService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.meishu.vo.student.BatchStudentsVO;
import org.springframework.stereotype.Service;
import java.util.List;
/**
* <p>
* 服务实现类
* </p>
*
* @author Tuyp
* @since 2023-07-14
*/
@Service
public class BatchStudentMappingServiceImpl extends ServiceImpl<BatchStudentMappingMapper, BatchStudentMappingDO> implements BatchStudentMappingService {
public List<BatchStudentsVO> batchStudents(BatchStudentMappingDO batchStudentMappingDO){
return this.baseMapper.batchStudents(batchStudentMappingDO.getBatchId());
}
}