EZOpenSDK  4.8.6
 全部  函数 属性
EZAlarmInfo.h
1 //
2 // EZAlarmInfo.h
3 // EzvizOpenSDK
4 //
5 // Created by DeJohn Dong on 15/9/16.
6 // Copyright (c) 2015年 Ezviz. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 
12 @interface EZAlarmInfo : NSObject
13 
15 @property (nonatomic, copy) NSString *alarmId;
17 @property (nonatomic, copy) NSString *deviceSerial;
19 @property (nonatomic) NSInteger cameraNo;
21 @property (nonatomic, copy) NSString *alarmName;
23 @property (nonatomic, copy) NSString *alarmPicUrl;
25 @property (nonatomic, strong) NSDate *alarmStartTime;
27 @property (nonatomic) NSInteger alarmType;
29 @property (nonatomic) BOOL isEncrypt;
31 @property (nonatomic) BOOL isRead;
33 @property (nonatomic) NSInteger recState;
35 @property (nonatomic) NSInteger delayTime;
37 @property (nonatomic) NSInteger preTime;
39 @property (nonatomic, copy) NSString *deviceName;
41 @property (nonatomic, copy) NSString *category;
42 
44 @property (nonatomic, copy) NSString *customerType;
46 @property (nonatomic, copy) NSString *customerInfo;
47 
48 @end
NSInteger cameraNo
通道号
Definition: EZAlarmInfo.h:19
此类为告警信息对象
Definition: EZAlarmInfo.h:12
NSString * alarmId
告警ID
Definition: EZAlarmInfo.h:15
NSInteger recState
存储类型,0-无存储,1-萤石,2-百度,4-sd卡存储,5-萤石和sd卡,6-百度和sd卡
Definition: EZAlarmInfo.h:33
NSDate * alarmStartTime
告警开始时间
Definition: EZAlarmInfo.h:25
NSInteger alarmType
告警类型
Definition: EZAlarmInfo.h:27
NSString * deviceSerial
设备序列号
Definition: EZAlarmInfo.h:17
NSString * customerType
4530 扩展字段
Definition: EZAlarmInfo.h:44
NSString * alarmPicUrl
告警图片
Definition: EZAlarmInfo.h:23
NSInteger preTime
告警录像开始时间提前偏移量,通过alarmStartTime减去提前偏移量获得告警录像的具体开始时间 ...
Definition: EZAlarmInfo.h:37
NSString * category
设备大类
Definition: EZAlarmInfo.h:41
BOOL isRead
是否已读
Definition: EZAlarmInfo.h:31
BOOL isEncrypt
是否加密
Definition: EZAlarmInfo.h:29
NSString * alarmName
告警名称
Definition: EZAlarmInfo.h:21
NSString * customerInfo
4530 扩展字段
Definition: EZAlarmInfo.h:46
NSString * deviceName
设备名称
Definition: EZAlarmInfo.h:39
NSInteger delayTime
告警录像结束时间时间延后偏移量,通过alarmStartTime加上延后偏移量获得告警录像的具体结束时间 ...
Definition: EZAlarmInfo.h:35