JLChen
2021-04-30 a5247b61d585627a1a7b1e1f35f34de9f0af9fba
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
//
//  Copyright © 2019 dahua. All rights reserved.
// deviceOnline:获取设备在线状态模型
 
#import <Foundation/Foundation.h>
 
NS_ASSUME_NONNULL_BEGIN
 
@interface LCDeviceOnlineInfoChannelInfo : NSObject
 
/// 通道号
@property (nonatomic) int channelId;
 
/// 设备在线 0:不在线 1:在线
@property (strong, nonatomic) NSString *onLine;
 
@end
 
@interface LCDeviceOnlineInfo : NSObject
 
/// 设备序列号
@property (strong, nonatomic) NSString *deviceId;
 
/// 设备在线 0:不在线 1:在线
@property (strong, nonatomic) NSString *onLine;
 
/// 设备下所有通道的在线状态
@property (strong, nonatomic) LCDeviceOnlineInfoChannelInfo *channels;
 
@end
 
NS_ASSUME_NONNULL_END