// // FKPriceWarnItem.h // FirstLink // // Created by jack on 16/5/27. // Copyright © 2016年 FirstLink. All rights reserved. // #import 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