12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- //
- // FKLivesProductItem.h
- // FirstLink
- //
- // Created by Lofty on 16/10/13.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- typedef NS_ENUM(NSUInteger, kShoppingLivesSource) {
- kShoppingLivesSourceNone = 0,
- kShoppingLivesSourceCollect = 1,
- kShoppingLivesSourceBasket = 2,
- kShoppingLivesSourceBuy = 3,
- kShoppingLivesSourceBrowse = 4,
- kShoppingLivesSourceRecommend = 5
- };
- @interface FKLivesProductItem : NSObject
- @property (nonatomic, strong) NSString *brandID;
- @property (nonatomic, strong) NSString *brandName;
- @property (nonatomic, strong) NSString *brandPicUrl;
- @property (nonatomic, strong) NSString *cityName;
- @property (nonatomic, strong) NSString *productID;
- @property (nonatomic, strong) NSString *priceCN;
- @property (nonatomic, strong) NSString *proPicUrl;
- @property (nonatomic, strong) NSString *proTitle;
- @property (nonatomic, assign) long livesType;
- @property (nonatomic, assign) long livesStatus;
- @property (nonatomic, strong) NSString *createTime;
- @property (nonatomic, strong) NSString *occurTime;
- @property (nonatomic, strong) NSString *updateTime;
- @property (nonatomic, strong) NSString *recommendTitle;
- @property (nonatomic, strong) NSString *recommendDesc;
- @property (nonatomic, strong) NSString *recommendPicURL;
- @property (nonatomic, strong) NSString *recommendTargetURL;
- @property (nonatomic, strong) NSString *countryPicURL;
- @property (nonatomic, strong) NSString *supplierPicURL;
- @property (nonatomic, strong) NSString *supplierName;
- - (kShoppingLivesSource)source;
- @end
|