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.
53 lines
1.2 KiB
53 lines
1.2 KiB
![]()
2 years ago
|
//
|
||
|
// TrackInfoModel.h
|
||
|
// LekangGuard
|
||
|
//
|
||
|
// Created by ecell on 2022/12/15.
|
||
|
//
|
||
|
|
||
|
#import "BaseModel.h"
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
|
@interface TrackInfoModel : BaseModel
|
||
|
|
||
|
/// string高德定位区域id
|
||
|
@property (nonatomic ,copy) NSString *adcode;
|
||
|
|
||
|
/// string详细地址
|
||
|
@property (nonatomic ,copy) NSString *addr;
|
||
|
|
||
|
/// string轨迹类型(0.是正常轨迹默认为0,1.sos报警轨迹)
|
||
|
@property (nonatomic ,assign) NSInteger alarmType;
|
||
|
|
||
|
/// string($date-time)创建日期
|
||
|
@property (nonatomic ,copy) NSString *createTime;
|
||
|
|
||
|
/// string
|
||
|
@property (nonatomic ,assign) NSInteger Id;
|
||
|
|
||
|
/// string设备imei
|
||
|
@property (nonatomic ,copy) NSString *imei;
|
||
|
|
||
|
/// number($double)纬度
|
||
|
@property (nonatomic ,copy) NSString *lat;
|
||
|
|
||
|
/// string(定位类型 LBS, GPS,WIFI)
|
||
|
@property (nonatomic ,copy) NSString *locationType;
|
||
|
|
||
|
/// number($double)经度
|
||
|
@property (nonatomic ,copy) NSString *lon;
|
||
|
|
||
|
/// string定位精度
|
||
|
@property (nonatomic ,copy) NSString *radius;
|
||
|
|
||
|
/// integer($int32)(区域停留时间单位(秒))
|
||
|
@property (nonatomic ,assign) NSInteger residenceTime;
|
||
|
|
||
|
/// string($date-time)更新日期
|
||
|
@property (nonatomic ,copy) NSString *updateTime;
|
||
|
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|