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.
30 lines
557 B
30 lines
557 B
![]()
2 years ago
|
//
|
||
|
// TimeSwitchModel.h
|
||
|
// LekangGuard
|
||
|
//
|
||
|
// Created by ecell on 2022/12/10.
|
||
|
//
|
||
|
|
||
|
#import "BaseModel.h"
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
|
@interface TimeSwitchModel : BaseModel
|
||
|
|
||
|
/// string example: 关机时间
|
||
|
@property (nonatomic ,copy) NSString *endTime;
|
||
|
|
||
|
/// string example: 设备imei
|
||
|
@property (nonatomic ,copy) NSString *imei;
|
||
|
|
||
|
/// string example: 开机时间
|
||
|
@property (nonatomic ,copy) NSString *startTime;
|
||
|
|
||
|
/// string example: 功能是否启用 : 0:关闭, 1:打开
|
||
|
@property (nonatomic ,assign) BOOL status;
|
||
|
|
||
|
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|