济菏高速数据中心代码
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.
 
 
 
 
 

25 lines
456 B

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);
}