123456789101112131415161718192021222324252627 |
- //
- // FKRemindProductItem.h
- // FirstLink
- //
- // Created by jack on 16/5/27.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "FKPriceWarnItem.h"
- @interface FKRemindProductItem : NSObject
- @property (nonatomic, strong) NSString *itemID;
- @property (nonatomic, strong) NSString *goodsID;
- @property (nonatomic, strong) NSString *productID;
- @property (nonatomic, strong) NSString *picUrl;
- @property (nonatomic, strong) NSString *title;
- @property (nonatomic, strong) NSString *price;
- @property (nonatomic, strong) NSString *originPrice;
- @property (nonatomic, strong) NSString *expectPrice;
- @property (nonatomic, strong) NSString *notifyType;
- @property (nonatomic, strong) NSString *goodsName;
- - (FKPriceWarnItem *)createPriceWarnItem;
- @end
|