暂无描述

FKLimitBuyItem.h 915B

1234567891011121314151617181920212223242526272829
  1. //
  2. // FKLimitBuyItem.h
  3. // FirstLink
  4. //
  5. // Created by jack on 15/11/30.
  6. // Copyright © 2015年 FirstLink. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface FKLimitBuyItem : NSObject
  10. @property (nonatomic, strong) NSString *postID;
  11. @property (nonatomic, strong) NSString *userID;
  12. @property (nonatomic, strong) NSString *objectID;
  13. @property (nonatomic, strong) NSString *objectType;
  14. @property (nonatomic, strong) NSString *photoURL;
  15. @property (nonatomic, strong) NSString *targetUrl;
  16. @property (nonatomic, strong) NSString *salable;
  17. @property (nonatomic, strong) NSString *status;
  18. @property (nonatomic, strong) NSString *price;
  19. @property (nonatomic, strong) NSString *originalPrice;
  20. @property (nonatomic, strong) NSString *stockNum;
  21. @property (nonatomic, strong) NSString *beginTime;
  22. @property (nonatomic, strong) NSString *endTime;
  23. @property (nonatomic, assign) NSInteger remaindTime;
  24. @end