You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
456 B
26 lines
456 B
11 months ago
|
package com.zc.business.service;
|
||
|
|
||
|
import com.zc.business.domain.DcDevice;
|
||
|
import com.zc.business.domain.DcSwitch;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
/**
|
||
|
* 交换机Service接口
|
||
|
*
|
||
|
* @author wangjiabao
|
||
|
* @date 2024-04-19
|
||
|
*/
|
||
|
public interface DcSwitchService {
|
||
|
|
||
|
/**
|
||
|
* 查询交换机
|
||
|
*/
|
||
|
List<DcSwitch> getSwitchList(DcSwitch dcSwitch);
|
||
|
|
||
|
/**
|
||
|
* 根据设备列表查询设备
|
||
|
*/
|
||
|
List<DcDevice> getDeviceList(String deviceList);
|
||
|
}
|