Keine Beschreibung

FKPriceWarnItem.h 641B

12345678910111213141516171819202122232425262728
  1. //
  2. // FKPriceWarnItem.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. typedef NS_ENUM(NSUInteger, kNotifyType) {
  10. kNotifyTypeNone = 0,
  11. kNotifyTypeMessage,
  12. kNotifyTypePush,
  13. kNotifyTypeBoth,
  14. };
  15. @interface FKPriceWarnItem : NSObject
  16. @property (nonatomic, strong) NSString *goodsID;
  17. @property (nonatomic, strong) NSString *specName;
  18. @property (nonatomic, strong) NSString *currentPrice;
  19. @property (nonatomic, strong) NSString *expectPrice;
  20. @property (nonatomic, assign) kNotifyType notifyType;
  21. - (BOOL)didOpenMessageWarn;
  22. @end