1234567891011121314151617181920212223242526 |
- //
- // FKBookProItem.h
- // FirstLink
- //
- // Created by jack on 16/4/29.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface FKBookProItem : NSObject
- @property (nonatomic, strong) NSString *itemID;
- @property (nonatomic, strong) NSString *picUrl;
- @property (nonatomic, strong) NSString *name;
- @property (nonatomic, strong) NSString *title;
- @property (nonatomic, strong) NSString *currentPrice;
- @property (nonatomic, strong) NSString *originPrice;
- @property (nonatomic, strong) NSString *pushType;
- @property (nonatomic, strong) NSString *brand;
- @property (nonatomic, strong) NSString *createTime;
- - (NSString *)getRealTimeStrWithServeTime:(NSString *)serveTime;
- - (NSString *)getRealRecStr;
- @end
|