ifish/Ifish/BMKMap3.3.0/BaiduMapAPI_Utils.framework/Headers/BMKFavPoiInfo.h

37 lines
912 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// BMKFavPoiInfo.h
// UtilsComponent
//
// Created by wzy on 15/4/8.
// Copyright (c) 2015年 baidu. All rights reserved.
//
#ifndef UtilsComponent_BMKFavPoiInfo_h
#define UtilsComponent_BMKFavPoiInfo_h
#import <Foundation/Foundation.h>
#import <CoreLocation/CoreLocation.h>
///收藏点信息类
@interface BMKFavPoiInfo : NSObject
///数据ID自动生成
@property (nonatomic, strong) NSString* favId;
///poi名称添加或更新时必须有
@property (nonatomic, strong) NSString* poiName;
///poi点Uid
@property (nonatomic, strong) NSString* poiUid;
///poi坐标添加或更新时必须有
@property (nonatomic, assign) CLLocationCoordinate2D pt;
///poi地址
@property (nonatomic, strong) NSString* address;
///城市名称
@property (nonatomic, strong) NSString* cityName;
///添加或最后修改时间戳
@property (nonatomic, assign) NSUInteger timeStamp;
@end
#endif