口袋版本的一折买

AdPopModel.h 1.0KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //
  2. // AdPopModel.h
  3. // YouHuiProject
  4. //
  5. // Created by 小花 on 2018/5/31.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface AdPopModel : NSObject
  10. @property (nonatomic, strong) NSString *Id;
  11. @property (nonatomic, strong) NSString *img;
  12. @property (nonatomic, strong) NSString *activity_id;
  13. /**
  14. 广告点击后跳转类型
  15. 1-h5 ;
  16. 2-商品详情 ;
  17. 3-专题列表 ;
  18. 4-淘宝
  19. */
  20. @property (nonatomic, strong) NSString *click_type;//
  21. //参数
  22. @property (nonatomic, strong) NSString *click_param;
  23. //以下为type=2,商品详情时使用
  24. @property (nonatomic, strong) NSString *is_coupon;
  25. @property (nonatomic, strong) NSString *coupon_price;
  26. @property (nonatomic, strong) NSString *price;
  27. @property (nonatomic, strong) NSString *discount_price;
  28. @property (nonatomic, strong) NSString *commission_rate;
  29. @property (nonatomic, strong) NSString *coupon_start_time;
  30. @property (nonatomic, strong) NSString *coupon_end_time;
  31. //groupTitle
  32. @property (nonatomic, strong) NSString *groupTitle;
  33. @end