BMKFavPoiInfo.h 912 B

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // BMKFavPoiInfo.h
  3. // UtilsComponent
  4. //
  5. // Created by wzy on 15/4/8.
  6. // Copyright (c) 2015年 baidu. All rights reserved.
  7. //
  8. #ifndef UtilsComponent_BMKFavPoiInfo_h
  9. #define UtilsComponent_BMKFavPoiInfo_h
  10. #import <Foundation/Foundation.h>
  11. #import <CoreLocation/CoreLocation.h>
  12. ///收藏点信息类
  13. @interface BMKFavPoiInfo : NSObject
  14. ///数据ID,自动生成
  15. @property (nonatomic, strong) NSString* favId;
  16. ///poi名称(添加或更新时,必须有)
  17. @property (nonatomic, strong) NSString* poiName;
  18. ///poi点Uid
  19. @property (nonatomic, strong) NSString* poiUid;
  20. ///poi坐标(添加或更新时,必须有)
  21. @property (nonatomic, assign) CLLocationCoordinate2D pt;
  22. ///poi地址
  23. @property (nonatomic, strong) NSString* address;
  24. ///城市名称
  25. @property (nonatomic, strong) NSString* cityName;
  26. ///添加或最后修改时间戳
  27. @property (nonatomic, assign) NSUInteger timeStamp;
  28. @end
  29. #endif