// 设备模型类 class SearchDeviceItem { final String id; final String name; final String deviceType; final bool isOnline; SearchDeviceItem({ required this.id, required this.name, required this.deviceType, required this.isOnline, }); }