123456789101112131415161718192021222324252627282930313233 |
- //
- // LDMorePicCollectionModel.h
- // YouHuiProject
- //
- // Created by jcymac on 2018/4/25.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface LDMorePicCollectionModel : NSObject
- @property (nonatomic, strong) NSString *Id;
- @property (nonatomic, strong) NSString *name;
- @property (nonatomic, strong) NSString *img;
- @property (nonatomic, strong) NSString *show_type; //1 - 原生 ; 2 - H5
- @property (nonatomic, strong) NSString *url;
- @property (nonatomic, strong) NSString *jump_type;
- @property (nonatomic, strong) NSString *ios_js_string;
- @property (nonatomic, strong) NSString *goods_id;
- @property (nonatomic, strong) NSString *coupon_price;
- @property (nonatomic, strong) NSString *price;
- @property (nonatomic, strong) NSString *discount_price;
- @property (nonatomic, strong) NSString *commission_rate;
- @property (nonatomic, strong) NSString *coupon_start_time;
- @property (nonatomic, strong) NSString *coupon_end_time;
- @property (nonatomic, strong) NSString *is_coupon;
- @property (nonatomic, copy) NSString *coupon_id;//转链id
- @end
|