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 { List listTenantMounts(Long tenantId); AiMcpMount getTenantMount(Long tenantId, Long id); AiMcpMount getTenantMountByCode(Long tenantId, String mountCode); }