No Description

FKProductItem.h 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //
  2. // FKProductItem.h
  3. // FirstLink
  4. //
  5. // Created by jack on 16/1/21.
  6. // Copyright © 2016年 FirstLink. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "FKPriceWarnItem.h"
  10. @interface FKProductItem : NSObject <NSCopying>
  11. @property (nonatomic, strong) NSString *goodsID;
  12. @property (nonatomic, strong) NSString *title;
  13. @property (nonatomic, strong) NSString *picUrl;
  14. @property (nonatomic, strong) NSString *specIdList;
  15. @property (nonatomic, strong) NSString *price;
  16. @property (nonatomic, strong) NSString *activityPrice;
  17. @property (nonatomic, strong) NSString *activityDesc;
  18. @property (nonatomic, strong) NSString *originPrice;
  19. @property (nonatomic, strong) NSString *stock;
  20. @property (nonatomic, strong) NSString *sellSide;
  21. @property (nonatomic, strong) NSString *needPayTax;
  22. @property (nonatomic, strong) NSString *weight;
  23. @property (nonatomic, assign) BOOL isOnline;
  24. @property (nonatomic, assign) NSUInteger selectedAmount;
  25. @property (nonatomic, assign) NSUInteger realStockCount;
  26. @property (nonatomic, strong) NSString *fullSpecName; // 拼凑得规格名称
  27. - (BOOL)hasContainBasicId:(NSString *)specID;
  28. - (BOOL)isContainBasicIdArray:(NSArray *)basicIdArray;
  29. - (ProductType)productType;
  30. - (NSInteger)getSingleWeight;
  31. - (FKPriceWarnItem *)createPriceWarnItem;
  32. @end