12345678910111213141516171819202122232425262728 |
- //
- // FKPriceWarnItem.h
- // FirstLink
- //
- // Created by jack on 16/5/27.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- typedef NS_ENUM(NSUInteger, kNotifyType) {
- kNotifyTypeNone = 0,
- kNotifyTypeMessage,
- kNotifyTypePush,
- kNotifyTypeBoth,
- };
- @interface FKPriceWarnItem : NSObject
- @property (nonatomic, strong) NSString *goodsID;
- @property (nonatomic, strong) NSString *specName;
- @property (nonatomic, strong) NSString *currentPrice;
- @property (nonatomic, strong) NSString *expectPrice;
- @property (nonatomic, assign) kNotifyType notifyType;
- - (BOOL)didOpenMessageWarn;
- @end
|