萤石云 iOSSDK,移植跨平台相关工程
JLChen
2021-07-09 1a27ef122fb0a2b9f1c19dd609897728b795df5d
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
//
//  HDLAlarmInfo.h
//  EZOpenSDKDemo
//
//  Created by 陈嘉乐 on 2021/7/9.
//  Copyright © 2021 hikvision. All rights reserved.
//
 
#import <Foundation/Foundation.h>
 
NS_ASSUME_NONNULL_BEGIN
 
@interface HDLAlarmInfo : NSObject
 
/// 主键ID
@property (nonatomic, copy)   NSString *ysId;
/// 告警ID
@property (nonatomic, copy)   NSString *alarmId;
/// 通道号
@property (nonatomic, assign) NSInteger channelNo;
/// 设备序列号
@property (nonatomic, copy)   NSString *deviceSerial;
/// 告警名称
@property (nonatomic, copy)   NSString *alarmName;
/// 告警图片
@property (nonatomic, copy)   NSString *alarmPicUrl;
/// 告警开始时间
@property (nonatomic, strong) NSDate *alarmTime;
/// 住宅Id
@property (nonatomic, copy)   NSString *homeId;
/// 告警类型
@property (nonatomic, copy)   NSString *alarmType;
/// 是否已读
@property (nonatomic, assign) NSInteger isChecked;
/// 是否加密
@property (nonatomic, assign) NSInteger isEncrypt;
//@property (nonatomic, assign) NSInteger deleted;
//@property (nonatomic, copy)   NSString *tenantID;
@property (nonatomic, copy)   NSString *createTime;
//@property (nonatomic, copy)   NSString *modifyTime;
//@property (nonatomic, copy)   NSString *region;
//@property (nonatomic, copy)   NSString *identifier;
-(NSDate *)getAlarmStartTime;
@end
 
@interface HDLAlarmInfoData : NSObject
@property (nonatomic, copy) NSArray<HDLAlarmInfo *> *list;
@property (nonatomic, assign) NSInteger totalCount;
@property (nonatomic, assign) NSInteger totalPage;
@property (nonatomic, assign) NSInteger pageNo;
@property (nonatomic, assign) NSInteger pageSize;
@end
 
 
 
NS_ASSUME_NONNULL_END