1
wei
2021-01-21 62d098cb78296feaa6f786a20748921338db838c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//
//  TYSmartBLEModel.h
//  TuyaSmartUtil-iOS-TuyaSmartUtil
//
//  Created by 温明妍 on 2019/9/23.
//
 
#import <Foundation/Foundation.h>
#import "TYSmartBLEAPMEnum.h"
 
@interface TYSmartBLEAPMMessageModel : NSObject <NSCopying>
 
@property (nonatomic, strong) NSString *devId;
@property (nonatomic, assign) TYSmartBLEAPMType type;
@property (nonatomic, strong) NSDictionary *dps;
@property (nonatomic, assign) NSTimeInterval time; /**< 上报时间点  */
@property (nonatomic, strong) NSString *des; /**< 描述  */
@property (nonatomic, strong) NSDictionary *extInfo; /**< 预留  */
 
 
- (NSDictionary *)attributes;
 
@end