Sin descripción

FKWantBuyItem.h 842B

1234567891011121314151617181920212223242526272829303132333435363738
  1. //
  2. // FKWantBuyItem.h
  3. // FirstLink
  4. //
  5. // Created by 施昌鹏 on 16/8/18.
  6. // Copyright © 2016年 FirstLink. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "FKWantBuyProItem.h"
  10. typedef NS_ENUM(NSUInteger, FkCatchState) {
  11. FKCatchUnkown = - 1,
  12. FKWaitCatch = 0,
  13. FKCatching,
  14. FKCatchSuccess,
  15. FKCatchFail
  16. };
  17. typedef NS_ENUM(NSUInteger, FKStorageState) {
  18. FKStorageStateUnkown = - 1,
  19. FKWaitStorage = 0,
  20. FKInStorage = 1,
  21. };
  22. @interface FKWantBuyItem : NSObject
  23. @property (nonatomic, strong) NSString *isInstorage;
  24. @property (nonatomic, strong) NSString *status;
  25. @property (nonatomic, strong) NSString *proUrl;
  26. @property (nonatomic, strong) NSString *storageNum;
  27. @property (nonatomic, strong) FKWantBuyProItem *product;
  28. - (FkCatchState)getCatchState;
  29. - (FKStorageState)getStorageState;
  30. @end