1234567891011121314151617181920212223 |
- //
- // FKTopicReform.h
- // FirstLink
- //
- // Created by jack on 15/10/12.
- // Copyright © 2015年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "FKTopicItem.h"
- #import "FLSortProductItem.h"
- #import "FKShareTargetItem.h"
- @interface FKTopicReform : NSObject
- + (FKTopicItem *)parserTopicItemWithDict:(NSDictionary *)dict;
- + (NSArray *)parserDataArrayWithDict:(NSDictionary *)dict;
- + (NSArray *)parserProductIDsWithDict:(NSDictionary *)dict;
- + (NSArray *)parserRelatedTopicsWithDict:(NSDictionary *)dict;
- + (FKShareTargetItem *)parserShareItemWithDict:(NSDictionary *)dict;
- @end
|