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.
33 lines
988 B
33 lines
988 B
1 year ago
|
//
|
||
|
// Locate.h
|
||
|
// myWatch
|
||
|
// 设备追踪轨迹点
|
||
|
// Created by mobao on 15/12/3.
|
||
|
// Copyright © 2015年 xTT. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
#import "baseModel.h"
|
||
|
|
||
|
@interface Locate : baseModel
|
||
|
|
||
|
@property (nonatomic, strong) NSString *imei;
|
||
|
@property (nonatomic, strong) NSString *address;
|
||
|
//@property (nonatomic, strong) NSString *hour;
|
||
|
//@property (nonatomic, strong) NSString *minute;
|
||
|
|
||
|
@property (nonatomic, strong) NSNumber *lat;//纬度
|
||
|
@property (nonatomic, strong) NSNumber *lon;//经度
|
||
|
//@property (nonatomic, strong) NSString *staytime;//停留时间
|
||
|
//@property (nonatomic, strong) NSString *time;//多少分前
|
||
|
@property (nonatomic, strong) NSNumber *radius;
|
||
|
//@property (nonatomic, strong) NSString *ultratime;//具体定位时间
|
||
|
|
||
|
@property (nonatomic, strong) NSString *loc_type;//"LBS" 默认, "GPS" ,"WIFI"
|
||
|
@property (nonatomic, strong) NSNumber *locus;//1 轨迹点 2定位点
|
||
|
|
||
|
@property (nonatomic, strong) NSNumber *endtime;
|
||
|
|
||
|
|
||
|
@end
|