liuxiaolong
2019-05-06 1043e7be0b7503d7b0f488dc0d8d11a2b8079dee
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.cloud.control.service;
 
import com.alibaba.fastjson.JSONObject;
import com.cloud.model.common.Result;
 
import java.util.List;
 
/**
 * 设备管理集群接口
 */
public interface ClusterService {
 
    Result findAllNode();
 
    Result getClusterDeviceTree();
}