1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.ycl.service.cockpitManage;
|
| import com.ycl.entity.cockpitManage.TeamConstruction;
| import com.baomidou.mybatisplus.extension.service.IService;
|
| /**
| * <p>
| * 队伍建设表 服务类
| * </p>
| *
| * @author zhanghua
| * @since 2022-10-31
| */
| public interface ITeamConstructionService extends IService<TeamConstruction> {
|
| }
|
|