No Description

FKExploreTopicListItem.h 1.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. //
  2. // FKExploreTopicListItem.h
  3. // FirstLink
  4. //
  5. // Created by ascii on 16/2/16.
  6. // Copyright © 2016年 FirstLink. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface FKExploreTopicListSubItem : NSObject
  10. @property (nonatomic, strong) NSString *itemID;
  11. @property (nonatomic, strong) NSString *userID;
  12. /**
  13. * 商品的图片URL和标题
  14. */
  15. @property (nonatomic, strong) NSString *name;
  16. @property (nonatomic, strong) NSString *indexPic;
  17. /**
  18. * 拼单的图片URL和标题
  19. */
  20. @property (nonatomic, strong) NSString *title;
  21. @property (nonatomic, strong) NSString *firstPic;
  22. @property (nonatomic, strong) NSString *price;
  23. @property (nonatomic, strong) NSString *referPrice;
  24. @property (nonatomic, strong) NSString *isNew;
  25. @end
  26. @interface FKExploreTopicListItem : NSObject
  27. @property (nonatomic, strong) NSString *objectType;
  28. @property (nonatomic, strong) NSString *topicID;
  29. @property (nonatomic, strong) NSString *categoryURL;
  30. @property (nonatomic, strong) NSString *targetURL;
  31. @property (nonatomic, strong) NSString *photoURL;
  32. @property (nonatomic, strong) NSArray *subItemArray;
  33. - (NSString *)subItemImageURLStringAtIndex:(NSInteger)index;
  34. - (NSString *)subItemTitleAtIndex:(NSInteger)index;
  35. - (NSAttributedString *)priceAttributedStringAtIndex:(NSInteger)index;
  36. @end