// // Locate.h // myWatch // 设备追踪轨迹点 // Created by mobao on 15/12/3. // Copyright © 2015年 xTT. All rights reserved. // #import #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