1
0

app设备列表添加蓝牙名称

This commit is contained in:
2025-07-10 13:33:32 +08:00
parent 1dc00f0431
commit b876d051d8
2 changed files with 7 additions and 1 deletions

View File

@ -32,4 +32,9 @@ public class AppDeviceVo {
* 设备图片
*/
private String devicePic;
/**
* 蓝牙名称
*/
private String bluetoothName;
}

View File

@ -172,7 +172,8 @@
d.device_sn,
d.device_imei,
d.device_mac,
dt.communication_mode
dt.communication_mode,
d.bluetooth_name
from device d
inner join device_type dt on d.device_type = dt.id
where d.binding_user_id = #{criteria.bindingUserId}