No Description

LFWChildGoodModel.h 1.4KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. //
  2. // LFWChildGoodModel.h
  3. // YouHuiProject
  4. //
  5. // Created by 小花 on 2018/1/19.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface LFWChildGoodModel : NSObject
  10. @property (nonatomic, strong) NSString *goods_id;
  11. @property (nonatomic, strong) NSString *title;
  12. @property (nonatomic, strong) NSString *intro; //商品简介
  13. @property (nonatomic, strong) NSString *nick;//卖家昵称
  14. @property (nonatomic, strong) NSString *sellerId; //卖家ID
  15. @property (nonatomic, strong) NSString *img;
  16. @property (nonatomic, strong) NSString *price; //原价
  17. @property (nonatomic, strong) NSString *discount_price; //折扣价
  18. @property (nonatomic, strong) NSString *coupon_price; //优惠价价格
  19. @property (nonatomic, strong) NSString *coupon_surplus; //优惠券剩余
  20. @property (nonatomic, strong) NSString *is_new;//是否上新 0 没有 1上新
  21. @property (nonatomic, strong) NSString *is_coupon; //是否是购物券 0 不是 1是
  22. @property (nonatomic, strong) NSString *volume; //月销量
  23. @property (nonatomic, strong) NSString *freeShipping; //是否包邮
  24. @property (nonatomic, strong) NSString *postage; //邮费
  25. @property (nonatomic, strong) NSString *photo; //月销量
  26. @property (nonatomic, strong) NSString *type; //0代表详情 1是列表 2是广告
  27. @property (nonatomic, strong) NSString *url;
  28. @property (nonatomic, copy) NSString *cid;
  29. @property (nonatomic, copy) NSString *scid;
  30. @end