123456789101112131415161718192021222324252627 |
- //
- // FKProductRelativeItem.h
- // FirstLink
- //
- // Created by jack on 16/3/25.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface FKProductRelativeItem : NSObject
- @property (nonatomic, strong) NSString *itemId;
- @property (nonatomic, strong) NSString *name;
- @property (nonatomic, strong) NSString *picUrl;
- @property (nonatomic, strong) NSString *title;
- @property (nonatomic, strong) NSString *price;
- @property (nonatomic, strong) NSString *referPrice;
- @property (nonatomic, strong) NSString *source;
- @property (nonatomic, strong) NSString *status;
- @property (nonatomic, strong) NSString *beginTime;
- @property (nonatomic, strong) NSString *objectType;
- @property (nonatomic, assign) BOOL productOnLine;
- @end
|