wl
2022-10-31 f12cbc3122950bcff273a9697e5159c0387520e5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.ycl.service.cockpitManage.impl;
 
import com.ycl.entity.cockpitManage.TeamConstruction;
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;
 
/**
 * <p>
 * 队伍建设表 服务实现类
 * </p>
 *
 * @author zhanghua
 * @since 2022-10-31
 */
@Service
public class TeamConstructionServiceImpl extends ServiceImpl<TeamConstructionMapper, TeamConstruction> implements ITeamConstructionService {
 
}