12345678910111213141516171819 |
- //
- // markInfo.h
- // jiaPei
- //
- // Created by apple on 16/1/13.
- // Copyright © 2016年 JCZ. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface markInfo : NSObject
- @property (nonatomic, copy) NSString *title;
- @property (nonatomic, copy) NSString *imageName;
- @property (nonatomic, copy) NSString *detail;
- +(NSMutableArray*)markInfoWithFMResultSet:(FMResultSet*)set;
- @end
|