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.
76 lines
1.7 KiB
76 lines
1.7 KiB
// |
|
// LatestLocationModel.h |
|
// LekangGuard |
|
// |
|
// Created by ecell on 2022/11/17. |
|
// |
|
|
|
#import "BaseModel.h" |
|
|
|
NS_ASSUME_NONNULL_BEGIN |
|
|
|
@interface LatestLocationModel : BaseModel |
|
|
|
/// string高德定位区域id |
|
@property (nonatomic ,copy) NSString *adcode; |
|
|
|
/// string详细地址 |
|
@property (nonatomic ,copy) NSString *addr; |
|
|
|
/// integer($int32)电量 |
|
@property (nonatomic ,assign) NSInteger battery; |
|
|
|
/// string城市 |
|
@property (nonatomic ,copy) NSString *city; |
|
|
|
/// string国家 |
|
@property (nonatomic ,copy) NSString *country; |
|
|
|
/// string($date-time)创建日期 |
|
@property (nonatomic ,copy) NSString *createTime; |
|
|
|
/// string |
|
@property (nonatomic ,assign) NSInteger Id; |
|
|
|
/// string设备imei |
|
@property (nonatomic ,copy) NSString *imei; |
|
|
|
/// string纬度 |
|
@property (nonatomic ,copy) NSString *latitude; |
|
|
|
/// string(定位类型 LBS GPS,WIFI) |
|
@property (nonatomic ,copy) NSString *locationType; |
|
|
|
/// string经度 |
|
@property (nonatomic ,copy) NSString *longitude; |
|
|
|
/// string省份 |
|
@property (nonatomic ,copy) NSString *province; |
|
|
|
/// string定位精度 |
|
@property (nonatomic ,copy) NSNumber *radius; |
|
|
|
/// string心率 |
|
@property (nonatomic ,copy) NSString *rate; |
|
|
|
/// string($date-time)心率最后更新的时间 |
|
@property (nonatomic ,copy) NSString *rateTime; |
|
|
|
/// integer($int32)步数 |
|
@property (nonatomic ,assign) NSInteger stepNumber; |
|
|
|
/// string体温 |
|
@property (nonatomic ,copy) NSString *temperature; |
|
|
|
/// string($date-time)体温最后更新的时间 |
|
@property (nonatomic ,copy) NSString *temperatureTime; |
|
|
|
/// string($date-time)更新日期 |
|
@property (nonatomic ,copy) NSString *updateTime; |
|
|
|
/// 是否在线 |
|
@property (nonatomic ,assign) BOOL onlineStatus; |
|
|
|
@end |
|
|
|
NS_ASSUME_NONNULL_END
|
|
|