//
|
// HDLAlarmInfo.m
|
// EZOpenSDKDemo
|
//
|
// Created by 陈嘉乐 on 2021/7/9.
|
// Copyright © 2021 hikvision. All rights reserved.
|
//
|
|
#import "HDLAlarmInfo.h"
|
|
@implementation HDLAlarmInfo
|
|
-(NSDate *)getAlarmStartTime{
|
NSTimeInterval time = [_createTime doubleValue];
|
// return [NSDate dateWithTimeIntervalSince1970:time];;
|
return [NSDate dateWithTimeIntervalSince1970:time/1000];
|
}
|
|
@end
|
|
@implementation HDLAlarmInfoData
|
+ (NSDictionary *)modelContainerPropertyGenericClass {
|
return @{@"list" : [HDLAlarmInfo class]};
|
}
|
@end
|