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
33
34
35
36
37
38
39
40
41
//
//  Copyright © 2019 dahua. All rights reserved.
// 单个设备通道的详细信息获取
 
#import <Foundation/Foundation.h>
 
NS_ASSUME_NONNULL_BEGIN
 
@interface LCBindDeviceChannelInfo : NSObject
 
/// 设备序列号
@property (strong, nonatomic) NSString *deviceId;
 
/// 通道号
@property (nonatomic) NSInteger channelId;
 
/// 通道名称
@property (strong, nonatomic) NSString *channelName;
 
/// 是否在线 ,online-在线 offline-在线 close-未配置 sleep-休眠
@property (strong, nonatomic) NSString *channelOnline;
 
/// 缩略图URL
@property (strong, nonatomic) NSString *channelPicUrl;
 
/// "":设备属于自己;"share":通过乐橙app共享给此用户;"auth":通过乐橙PC客户端授权给此用户;"shareAndAuth":通过乐橙app共享给此用户以及通过乐橙PC客户端授权给此用户;
@property (strong, nonatomic) NSString *shareStatus;
 
/// 被共享和授权的权限功能列表(逗号隔开)
@property (strong, nonatomic) NSString *shareFunctions;
 
/// 云存储状态 notExist:未开通套餐,using:开通云存储且没有过期, expired:套餐过期
@property (strong, nonatomic) NSString *csStatus;
 
/// 动检开关状态 0:关闭状态,1:开启状态
@property (nonatomic) NSInteger alarmStatus;
 
 
@end
 
NS_ASSUME_NONNULL_END