暂无描述

FKBookProItem.h 750B

1234567891011121314151617181920212223242526
  1. //
  2. // FKBookProItem.h
  3. // FirstLink
  4. //
  5. // Created by jack on 16/4/29.
  6. // Copyright © 2016年 FirstLink. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface FKBookProItem : NSObject
  10. @property (nonatomic, strong) NSString *itemID;
  11. @property (nonatomic, strong) NSString *picUrl;
  12. @property (nonatomic, strong) NSString *name;
  13. @property (nonatomic, strong) NSString *title;
  14. @property (nonatomic, strong) NSString *currentPrice;
  15. @property (nonatomic, strong) NSString *originPrice;
  16. @property (nonatomic, strong) NSString *pushType;
  17. @property (nonatomic, strong) NSString *brand;
  18. @property (nonatomic, strong) NSString *createTime;
  19. - (NSString *)getRealTimeStrWithServeTime:(NSString *)serveTime;
  20. - (NSString *)getRealRecStr;
  21. @end