baizonghao
2023-03-31 d3e5446447c79948eee93035900401aff50706fb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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);
    }
}