JLChen
2021-10-28 e96683081abd5c1a94608dd33d092d8f45371cd6
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
//
//  Copyright © 2019 dahua. All rights reserved.
//动检计划模型
 
#import <Foundation/Foundation.h>
 
NS_ASSUME_NONNULL_BEGIN
 
@interface LCAlarmPlanRule : NSObject
 
/// 是否有效
@property (nonatomic) BOOL enable;
/// 开始时间
@property (strong, nonatomic) NSString *beginTime;
/// 重复周期
@property (strong, nonatomic) NSString *period;
/// 结束时间
@property (strong, nonatomic) NSString *endTime;
 
@end
 
@interface LCAlarmPlan : NSObject
 
/// 通道ID
@property (strong, nonatomic) NSString *channelId;
 
/// 动检计划
@property (strong, nonatomic) NSArray <LCAlarmPlanRule *> *rules;
 
 
@end
 
NS_ASSUME_NONNULL_END