Bez popisu

FKRemindProductItem.h 792B

123456789101112131415161718192021222324252627
  1. //
  2. // FKRemindProductItem.h
  3. // FirstLink
  4. //
  5. // Created by jack on 16/5/27.
  6. // Copyright © 2016年 FirstLink. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "FKPriceWarnItem.h"
  10. @interface FKRemindProductItem : NSObject
  11. @property (nonatomic, strong) NSString *itemID;
  12. @property (nonatomic, strong) NSString *goodsID;
  13. @property (nonatomic, strong) NSString *productID;
  14. @property (nonatomic, strong) NSString *picUrl;
  15. @property (nonatomic, strong) NSString *title;
  16. @property (nonatomic, strong) NSString *price;
  17. @property (nonatomic, strong) NSString *originPrice;
  18. @property (nonatomic, strong) NSString *expectPrice;
  19. @property (nonatomic, strong) NSString *notifyType;
  20. @property (nonatomic, strong) NSString *goodsName;
  21. - (FKPriceWarnItem *)createPriceWarnItem;
  22. @end