Bez popisu

FKLivesProductItem.h 1.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. //
  2. // FKLivesProductItem.h
  3. // FirstLink
  4. //
  5. // Created by Lofty on 16/10/13.
  6. // Copyright © 2016年 FirstLink. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. typedef NS_ENUM(NSUInteger, kShoppingLivesSource) {
  10. kShoppingLivesSourceNone = 0,
  11. kShoppingLivesSourceCollect = 1,
  12. kShoppingLivesSourceBasket = 2,
  13. kShoppingLivesSourceBuy = 3,
  14. kShoppingLivesSourceBrowse = 4,
  15. kShoppingLivesSourceRecommend = 5
  16. };
  17. @interface FKLivesProductItem : NSObject
  18. @property (nonatomic, strong) NSString *brandID;
  19. @property (nonatomic, strong) NSString *brandName;
  20. @property (nonatomic, strong) NSString *brandPicUrl;
  21. @property (nonatomic, strong) NSString *cityName;
  22. @property (nonatomic, strong) NSString *productID;
  23. @property (nonatomic, strong) NSString *priceCN;
  24. @property (nonatomic, strong) NSString *proPicUrl;
  25. @property (nonatomic, strong) NSString *proTitle;
  26. @property (nonatomic, assign) long livesType;
  27. @property (nonatomic, assign) long livesStatus;
  28. @property (nonatomic, strong) NSString *createTime;
  29. @property (nonatomic, strong) NSString *occurTime;
  30. @property (nonatomic, strong) NSString *updateTime;
  31. @property (nonatomic, strong) NSString *recommendTitle;
  32. @property (nonatomic, strong) NSString *recommendDesc;
  33. @property (nonatomic, strong) NSString *recommendPicURL;
  34. @property (nonatomic, strong) NSString *recommendTargetURL;
  35. @property (nonatomic, strong) NSString *countryPicURL;
  36. @property (nonatomic, strong) NSString *supplierPicURL;
  37. @property (nonatomic, strong) NSString *supplierName;
  38. - (kShoppingLivesSource)source;
  39. @end