123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- //
- // YXDeviceInfoModel.h
- // Temperature
- //
- // Created by TC on 2025/4/11.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface YXDeviceInfoModel : NSObject
- /// h5地址
- @property (nonatomic, nullable, copy) NSString *detail_uRL;
- /// 设备编号
- @property (nonatomic, nullable, copy) NSString *device_code;
- /// 家庭id
- @property (nonatomic, nullable, copy) NSString *home_id;
- /// 湿度
- @property (nonatomic, nullable, strong) NSNumber *humidity;
- /// 图标地址
- @property (nonatomic, nullable, copy) NSString *icon;
- /// 是否是主控
- @property (nonatomic, nullable, strong) NSNumber *is_master;
- /// 是否在线
- @property (nonatomic, nullable, strong) NSNumber *is_online;
- /// 名称
- @property (nonatomic, nullable, copy) NSString *name;
- /// 开关状态,1开 0关
- @property (nonatomic, nullable, strong) NSNumber *power;
- /// 记录id
- @property (nonatomic, nullable, copy) NSString *record_id;
- /// 房间id
- @property (nonatomic, nullable, copy) NSString *room_id;
- /// 分控编号
- @property (nonatomic, nullable, copy) NSString *sub_code;
- /// 温度
- @property (nonatomic, nullable, strong) NSNumber *temperature;
- /// 设备类型id
- @property (nonatomic, nullable, copy) NSString *type_id;
- /// 设备类型名称
- @property (nonatomic, nullable, copy) NSString *type_name;
- @end
- NS_ASSUME_NONNULL_END
|