处理大屏展示资源使用情况问题

develop
bayuzhen 2024-05-30 15:39:19 +08:00
parent 5071d18c6b
commit 73b0dba61f
1 changed files with 3 additions and 0 deletions

View File

@ -5,6 +5,7 @@ import com.bocloud.common.enums.BoCloudService;
import com.bocloud.ims.entity.resource.Server; import com.bocloud.ims.entity.resource.Server;
import java.util.List; import java.util.List;
import java.util.Set;
@RPCService(BoCloudService.IMS) @RPCService(BoCloudService.IMS)
public interface ImsRpcService { public interface ImsRpcService {
@ -16,4 +17,6 @@ public interface ImsRpcService {
List<Server> getServerByName (List<String> serverNameList, Long vendorId); List<Server> getServerByName (List<String> serverNameList, Long vendorId);
List<Server> getServerAll (Set<Long> vendorIds) throws Exception;
} }