// // FKWantBuyItem.h // FirstLink // // Created by 施昌鹏 on 16/8/18. // Copyright © 2016年 FirstLink. All rights reserved. // #import #import "FKWantBuyProItem.h" typedef NS_ENUM(NSUInteger, FkCatchState) { FKCatchUnkown = - 1, FKWaitCatch = 0, FKCatching, FKCatchSuccess, FKCatchFail }; typedef NS_ENUM(NSUInteger, FKStorageState) { FKStorageStateUnkown = - 1, FKWaitStorage = 0, FKInStorage = 1, }; @interface FKWantBuyItem : NSObject @property (nonatomic, strong) NSString *isInstorage; @property (nonatomic, strong) NSString *status; @property (nonatomic, strong) NSString *proUrl; @property (nonatomic, strong) NSString *storageNum; @property (nonatomic, strong) FKWantBuyProItem *product; - (FkCatchState)getCatchState; - (FKStorageState)getStorageState; @end