diff --git a/lib/core/consts/http_api_consts.dart b/lib/core/consts/http_api_consts.dart index 360d568b..eb14ca90 100644 --- a/lib/core/consts/http_api_consts.dart +++ b/lib/core/consts/http_api_consts.dart @@ -38,6 +38,10 @@ class HttpApiConsts { // 获取全部设备列表(用于蓝牙绑定匹配) static String get getDeviceList => "$baseUrl/iot/device/getDeviceList"; + // 根据拆分码(蓝牙设备名/时间戳)精确查询设备(用于蓝牙绑定匹配) + static String get getDeviceBySpiltCode => + "$baseUrl/iot/device/getDeviceBySpiltCode"; + // 获取机器人列表 static String get getRobotList => "$baseUrl/iot/device/getSiteList";