12345678910111213141516171819202122232425262728293031323334353637383940 |
- //
- // AdPopModel.h
- // YouHuiProject
- //
- // Created by 小花 on 2018/5/31.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface AdPopModel : NSObject
- @property (nonatomic, strong) NSString *Id;
- @property (nonatomic, strong) NSString *img;
- @property (nonatomic, strong) NSString *activity_id;
- /**
- 广告点击后跳转类型
- 1-h5 ;
- 2-商品详情 ;
- 3-专题列表 ;
- 4-淘宝
- */
- @property (nonatomic, strong) NSString *click_type;//
- //参数
- @property (nonatomic, strong) NSString *click_param;
- //以下为type=2,商品详情时使用
- @property (nonatomic, strong) NSString *is_coupon;
- @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;
- //groupTitle
- @property (nonatomic, strong) NSString *groupTitle;
- @end
|