萤石云 iOSSDK,移植跨平台相关工程
JLChen
2021-08-06 edc0f0a0439f9e5a11593e21a4779fa6dbcbe49d
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
//
//  EZHCNetDeviceInfo.h
//  EzvizOpenSDK
//
//  Created by linyong on 2017/9/15.
//  Copyright © 2017年 Ezviz. All rights reserved.
//
 
#import <Foundation/Foundation.h>
 
@interface EZHCNetDeviceInfo : NSObject
 
///登录后user id
@property (nonatomic,assign) NSInteger userId;
///模拟通道数
@property (nonatomic,assign) NSInteger channelCount;
///模拟通道起始通道号,0为无效果
@property (nonatomic,assign) NSInteger startChannelNo;
///数字通道数
@property (nonatomic,assign) NSInteger dChannelCount;
///起始数字通道号,0为无效果
@property (nonatomic,assign) NSInteger dStartChannelNo;
///告警输入个数
@property (nonatomic,assign) NSInteger byAlarmInPortNum;
///告警输出个数
@property (nonatomic,assign) NSInteger byAlarmOutPortNum;
///硬盘个数
@property (nonatomic,assign) NSInteger byDiskNum;
///设备类型
@property (nonatomic,assign) NSInteger byDVRType;
///零通道个数
@property (nonatomic,assign) NSInteger byZeroChanNum;
///设备语音通道数
@property (nonatomic,assign) NSInteger byAudioChanNum;
 
@end