You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
883 B
40 lines
883 B
// |
|
// AlarmModel.h |
|
// LekangGuard |
|
// |
|
// Created by ecell on 2022/12/5. |
|
// |
|
|
|
#import "BaseModel.h" |
|
|
|
NS_ASSUME_NONNULL_BEGIN |
|
|
|
@interface AlarmModel : BaseModel |
|
|
|
/// 是否开启 0关闭,1开启,默认1 |
|
@property (nonatomic ,assign) BOOL alarmStatus; |
|
|
|
/// 响铃时间 |
|
@property (nonatomic ,copy) NSString *alarmTime; |
|
|
|
/// 重复星期数为'0', '1'组成的7位长度字符串, 表示周一至周日是否有效,eg: '0000011'为周六日有效, '1110000'为周一二三有效 |
|
@property (nonatomic ,copy) NSString *alarmWeek; |
|
|
|
/// 主键Id |
|
@property (nonatomic ,copy) NSString *Id; |
|
|
|
/// 设备imei |
|
@property (nonatomic ,copy) NSString *imei; |
|
|
|
/// 标签 |
|
@property (nonatomic ,copy) NSString *tag; |
|
|
|
/// 结束响铃时间 |
|
@property (nonatomic ,copy) NSString *alarmEndTime; |
|
|
|
/// 开始响铃时间 |
|
@property (nonatomic ,copy) NSString *alarmStartTime; |
|
|
|
@end |
|
|
|
NS_ASSUME_NONNULL_END
|
|
|