No Description

FKProductRelativeItem.h 769B

123456789101112131415161718192021222324252627
  1. //
  2. // FKProductRelativeItem.h
  3. // FirstLink
  4. //
  5. // Created by jack on 16/3/25.
  6. // Copyright © 2016年 FirstLink. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface FKProductRelativeItem : NSObject
  10. @property (nonatomic, strong) NSString *itemId;
  11. @property (nonatomic, strong) NSString *name;
  12. @property (nonatomic, strong) NSString *picUrl;
  13. @property (nonatomic, strong) NSString *title;
  14. @property (nonatomic, strong) NSString *price;
  15. @property (nonatomic, strong) NSString *referPrice;
  16. @property (nonatomic, strong) NSString *source;
  17. @property (nonatomic, strong) NSString *status;
  18. @property (nonatomic, strong) NSString *beginTime;
  19. @property (nonatomic, strong) NSString *objectType;
  20. @property (nonatomic, assign) BOOL productOnLine;
  21. @end