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.
58 lines
1.5 KiB
58 lines
1.5 KiB
// |
|
// SafetyRailModel.h |
|
// LekangGuard |
|
// |
|
// Created by ecell on 2022/12/12. |
|
// |
|
|
|
#import "BaseModel.h" |
|
|
|
NS_ASSUME_NONNULL_BEGIN |
|
|
|
@interface SafetyRailModel : BaseModel |
|
|
|
/// string example: 最后一次进入或离开该安全区域的动作('enter','leave') |
|
@property (nonatomic ,copy) NSString * action; |
|
|
|
/// string example: 安全区域地址 |
|
@property (nonatomic ,copy) NSString *address; |
|
|
|
/// string($date-time) example: 创建时间 |
|
@property (nonatomic ,copy) NSString *createTime; |
|
|
|
/// string example: 创建人 |
|
@property (nonatomic ,copy) NSString *createUser; |
|
|
|
/// string example: 结束时间, 24小时制, eg: '08:00' |
|
@property (nonatomic ,copy) NSString *endTime; |
|
|
|
/// string example: 主键Id |
|
@property (nonatomic ,copy) NSString *Id; |
|
|
|
/// string example: 设备imei |
|
@property (nonatomic ,copy) NSString *imei; |
|
|
|
/// string example: 纬度 |
|
@property (nonatomic ,copy) NSString *lat; |
|
|
|
/// string example: 经度 |
|
@property (nonatomic ,copy) NSString *lon; |
|
|
|
/// string example: 安全区域名字 |
|
@property (nonatomic ,copy) NSString *name; |
|
|
|
/// integer($int32) example: 安全区域半径 |
|
@property (nonatomic ,assign) NSInteger radius; |
|
|
|
/// string example: 开始时间, 24小时制, eg: '08:00' |
|
@property (nonatomic ,copy) NSString *startTime; |
|
|
|
/// string example: 是否开启(0:关闭 1:开启) |
|
@property (nonatomic ,copy) NSString *status; |
|
|
|
/// string example: 重复星期数 |
|
@property (nonatomic ,copy) NSString *week; |
|
|
|
@end |
|
|
|
NS_ASSUME_NONNULL_END
|
|
|