// // FKExploreTopicListItem.h // FirstLink // // Created by ascii on 16/2/16. // Copyright © 2016年 FirstLink. All rights reserved. // #import @interface FKExploreTopicListSubItem : NSObject @property (nonatomic, strong) NSString *itemID; @property (nonatomic, strong) NSString *userID; /** * 商品的图片URL和标题 */ @property (nonatomic, strong) NSString *name; @property (nonatomic, strong) NSString *indexPic; /** * 拼单的图片URL和标题 */ @property (nonatomic, strong) NSString *title; @property (nonatomic, strong) NSString *firstPic; @property (nonatomic, strong) NSString *price; @property (nonatomic, strong) NSString *referPrice; @property (nonatomic, strong) NSString *isNew; @end @interface FKExploreTopicListItem : NSObject @property (nonatomic, strong) NSString *objectType; @property (nonatomic, strong) NSString *topicID; @property (nonatomic, strong) NSString *categoryURL; @property (nonatomic, strong) NSString *targetURL; @property (nonatomic, strong) NSString *photoURL; @property (nonatomic, strong) NSArray *subItemArray; - (NSString *)subItemImageURLStringAtIndex:(NSInteger)index; - (NSString *)subItemTitleAtIndex:(NSInteger)index; - (NSAttributedString *)priceAttributedStringAtIndex:(NSInteger)index; @end