12345678910111213141516171819202122232425262728293031323334353637383940 |
- //
- // FKProductItem.h
- // FirstLink
- //
- // Created by jack on 16/1/21.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "FKPriceWarnItem.h"
- @interface FKProductItem : NSObject <NSCopying>
- @property (nonatomic, strong) NSString *goodsID;
- @property (nonatomic, strong) NSString *title;
- @property (nonatomic, strong) NSString *picUrl;
- @property (nonatomic, strong) NSString *specIdList;
- @property (nonatomic, strong) NSString *price;
- @property (nonatomic, strong) NSString *activityPrice;
- @property (nonatomic, strong) NSString *activityDesc;
- @property (nonatomic, strong) NSString *originPrice;
- @property (nonatomic, strong) NSString *stock;
- @property (nonatomic, strong) NSString *sellSide;
- @property (nonatomic, strong) NSString *needPayTax;
- @property (nonatomic, strong) NSString *weight;
- @property (nonatomic, assign) BOOL isOnline;
- @property (nonatomic, assign) NSUInteger selectedAmount;
- @property (nonatomic, assign) NSUInteger realStockCount;
- @property (nonatomic, strong) NSString *fullSpecName; // 拼凑得规格名称
- - (BOOL)hasContainBasicId:(NSString *)specID;
- - (BOOL)isContainBasicIdArray:(NSArray *)basicIdArray;
- - (ProductType)productType;
- - (NSInteger)getSingleWeight;
- - (FKPriceWarnItem *)createPriceWarnItem;
- @end
|