| | |
| | | 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> |
| | |
| | | @Service |
| | | public class TeamConstructionServiceImpl extends ServiceImpl<TeamConstructionMapper, TeamConstruction> implements ITeamConstructionService { |
| | | |
| | | @Override |
| | | public List<TeamIndex> teamIndex(String beginTime, String endTime) { |
| | | return baseMapper.teamIndex(beginTime, endTime); |
| | | } |
| | | } |