1234567891011121314151617181920212223242526272829 |
- //
- // FKLimitBuyItem.h
- // FirstLink
- //
- // Created by jack on 15/11/30.
- // Copyright © 2015年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface FKLimitBuyItem : NSObject
- @property (nonatomic, strong) NSString *postID;
- @property (nonatomic, strong) NSString *userID;
- @property (nonatomic, strong) NSString *objectID;
- @property (nonatomic, strong) NSString *objectType;
- @property (nonatomic, strong) NSString *photoURL;
- @property (nonatomic, strong) NSString *targetUrl;
- @property (nonatomic, strong) NSString *salable;
- @property (nonatomic, strong) NSString *status;
- @property (nonatomic, strong) NSString *price;
- @property (nonatomic, strong) NSString *originalPrice;
- @property (nonatomic, strong) NSString *stockNum;
- @property (nonatomic, strong) NSString *beginTime;
- @property (nonatomic, strong) NSString *endTime;
- @property (nonatomic, assign) NSInteger remaindTime;
- @end
|