1234567891011121314151617181920212223242526272829303132333435 |
- //
- // YXMsgListModel.h
- // Temperature
- //
- // Created by TC on 2025/3/28.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface YXMsgListModel : NSObject
- /// 消息内容
- @property (nonatomic, copy) NSString *content;
- /// 推送时间
- @property (nonatomic, copy) NSString *created_at;
- /// 家庭id
- @property (nonatomic, copy) NSString *home_id;
- /// 记录id
- @property (nonatomic, copy) NSString *record_id;
- /// 状态 1未读 2已读
- @property (nonatomic, copy) NSNumber *status;
- /// 标题
- @property (nonatomic, copy) NSString *title;
- /// 消息类型 1系统消息(天气、系统通知) 2设备消息(设备故障、设备耗材、场景执行) 3活动消息
- @property (nonatomic, copy) NSNumber *type;
- /// 用户id
- @property (nonatomic, copy) NSString *user_id;
- /// h5地址
- @property (nonatomic, copy) NSString *detail_url;
- @end
- NS_ASSUME_NONNULL_END
|