package com.ycl.service.cockpitManage.impl;
|
|
import com.ycl.entity.cockpitManage.TeamConstruction;
|
import com.ycl.entity.cockpitManage.TeamIndex;
|
import com.ycl.mapper.cockpitManage.TeamConstructionMapper;
|
import com.ycl.service.cockpitManage.ITeamConstructionService;
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import org.springframework.stereotype.Service;
|
|
import java.util.List;
|
|
/**
|
* <p>
|
* 队伍建设表 服务实现类
|
* </p>
|
*
|
* @author zhanghua
|
* @since 2022-10-31
|
*/
|
@Service
|
public class TeamConstructionServiceImpl extends ServiceImpl<TeamConstructionMapper, TeamConstruction> implements ITeamConstructionService {
|
|
@Override
|
public List<TeamIndex> teamIndex(String beginTime, String endTime) {
|
return baseMapper.teamIndex(beginTime, endTime);
|
}
|
}
|