增加设备名称

This commit is contained in:
qjq
2024-04-16 17:35:07 +08:00
parent ad8e9667dc
commit e47dbf0c4e
6 changed files with 39 additions and 2 deletions

View File

@ -10,4 +10,11 @@ import java.util.List;
*/
public interface DeviceInfoApi {
List<DeviceInfoDto> getDeviceInfoList(Long carteenId);
/**
* @Description: 根据设备ip获取设备名称
* @Author: qjq
* @Date: 2024/4/16 下午5:26
* @return
*/
String getDeviceInfoName(String deviceIp);
}