123456789101112131415161718192021 |
- //
- // FKBookRecProItem.h
- // FirstLink
- //
- // Created by jack on 16/4/29.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface FKBookRecProItem : 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;
- @end
|