markInfo.h 395 B

12345678910111213141516171819
  1. //
  2. // markInfo.h
  3. // jiaPei
  4. //
  5. // Created by apple on 16/1/13.
  6. // Copyright © 2016年 JCZ. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface markInfo : NSObject
  10. @property (nonatomic, copy) NSString *title;
  11. @property (nonatomic, copy) NSString *imageName;
  12. @property (nonatomic, copy) NSString *detail;
  13. +(NSMutableArray*)markInfoWithFMResultSet:(FMResultSet*)set;
  14. @end