1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package com.vincent.rsf.server.system.service;
|
| import com.baomidou.mybatisplus.extension.service.IService;
| import com.vincent.rsf.server.system.entity.AiMcpMount;
|
| import java.util.List;
|
| public interface AiMcpMountService extends IService<AiMcpMount> {
|
| List<AiMcpMount> listTenantMounts(Long tenantId);
|
| AiMcpMount getTenantMount(Long tenantId, Long id);
|
| AiMcpMount getTenantMountByCode(Long tenantId, String mountCode);
| }
|
|