wxr
2024-01-03 6a8ea7d6e77dce65d1689e39824037627a59fbe0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//
//  TYSmartBLEAPMService.h
//  Bolts
//
//  Created by 温明妍 on 2019/9/2.
//
 
#import <Foundation/Foundation.h>
#import "TYSmartBLEAPMMessageModel.h"
#import "TYSmartBLEAPMEnum.h"
 
@interface TYSmartBLEAPMService : NSObject
 
+ (instancetype)sharedInstance;
 
- (void)putBLEAPMInDevId:(NSString *)devId type:(TYSmartBLEAPMType)type des:(NSString *)des dps:(NSDictionary *)dps extInfo:(NSDictionary *)extInfo;
 
- (void)putBLEAPMWithMessageModel:(TYSmartBLEAPMMessageModel *)messageModel;
 
 
@end