1234567891011121314151617181920212223242526272829303132333435363738 |
- //
- // LFWChildGoodModel.h
- // YouHuiProject
- //
- // Created by 小花 on 2018/1/19.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface LFWChildGoodModel : NSObject
- @property (nonatomic, strong) NSString *goods_id;
- @property (nonatomic, strong) NSString *title;
- @property (nonatomic, strong) NSString *intro; //商品简介
- @property (nonatomic, strong) NSString *nick;//卖家昵称
- @property (nonatomic, strong) NSString *sellerId; //卖家ID
- @property (nonatomic, strong) NSString *img;
- @property (nonatomic, strong) NSString *price; //原价
- @property (nonatomic, strong) NSString *discount_price; //折扣价
- @property (nonatomic, strong) NSString *coupon_price; //优惠价价格
- @property (nonatomic, strong) NSString *coupon_surplus; //优惠券剩余
- @property (nonatomic, strong) NSString *is_new;//是否上新 0 没有 1上新
- @property (nonatomic, strong) NSString *is_coupon; //是否是购物券 0 不是 1是
- @property (nonatomic, strong) NSString *volume; //月销量
- @property (nonatomic, strong) NSString *freeShipping; //是否包邮
- @property (nonatomic, strong) NSString *postage; //邮费
- @property (nonatomic, strong) NSString *photo; //月销量
- @property (nonatomic, strong) NSString *type; //0代表详情 1是列表 2是广告
- @property (nonatomic, strong) NSString *url;
- @property (nonatomic, copy) NSString *cid;
- @property (nonatomic, copy) NSString *scid;
- @end
|