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.
37 lines
967 B
37 lines
967 B
// |
|
// PositionModel.h |
|
// LekangGuard |
|
// |
|
// Created by ecell on 2022/12/10. |
|
// |
|
|
|
#import "BaseModel.h" |
|
|
|
NS_ASSUME_NONNULL_BEGIN |
|
|
|
@interface PositionModel : BaseModel |
|
|
|
/// string 定位模式1名称(正常模式) |
|
@property (nonatomic ,copy) NSString *modelOneName; |
|
|
|
/// string 定位模式3名称(高频模式) |
|
@property (nonatomic ,copy) NSString *modelThreeName; |
|
|
|
/// string 定位模式2名称(省电模式) |
|
@property (nonatomic ,copy) NSString *modelTwoName; |
|
|
|
/// string 定位模式id |
|
@property (nonatomic ,assign) NSInteger positioningModeId; |
|
|
|
/// integer($int32) 定位模式1间隔(单位分钟) |
|
@property (nonatomic ,assign) NSInteger positioningOneInterva; |
|
|
|
/// integer($int32) 定位模式3间隔(单位分钟) |
|
@property (nonatomic ,assign) NSInteger positioningThreeInterva; |
|
|
|
/// integer($int32) 定位模式2间隔(单位分钟) |
|
@property (nonatomic ,assign) NSInteger positioningTwoInterva; |
|
|
|
@end |
|
|
|
NS_ASSUME_NONNULL_END
|
|
|