//
|
// 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
|