优惠券订单及其他脚本

TbkCoupon.php 1.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <?php
  2. /**
  3. * TbkCoupon
  4. * @author auto create
  5. */
  6. class TbkCoupon
  7. {
  8. /**
  9. * 后台一级类目
  10. **/
  11. public $category;
  12. /**
  13. * 佣金比率(%)
  14. **/
  15. public $commission_rate;
  16. /**
  17. * 商品优惠券推广链接
  18. **/
  19. public $coupon_click_url;
  20. /**
  21. * 优惠券结束时间
  22. **/
  23. public $coupon_end_time;
  24. /**
  25. * 优惠券面额
  26. **/
  27. public $coupon_info;
  28. /**
  29. * 优惠券剩余量
  30. **/
  31. public $coupon_remain_count;
  32. /**
  33. * 优惠券开始时间
  34. **/
  35. public $coupon_start_time;
  36. /**
  37. * 优惠券总量
  38. **/
  39. public $coupon_total_count;
  40. /**
  41. * 宝贝描述(推荐理由)
  42. **/
  43. public $item_description;
  44. /**
  45. * 商品详情页链接地址
  46. **/
  47. public $item_url;
  48. /**
  49. * 卖家昵称
  50. **/
  51. public $nick;
  52. /**
  53. * itemId
  54. **/
  55. public $num_iid;
  56. /**
  57. * 商品主图
  58. **/
  59. public $pict_url;
  60. /**
  61. * 卖家id
  62. **/
  63. public $seller_id;
  64. /**
  65. * 店铺名称
  66. **/
  67. public $shop_title;
  68. /**
  69. * 商品小图列表
  70. **/
  71. public $small_images;
  72. /**
  73. * 商品标题
  74. **/
  75. public $title;
  76. /**
  77. * 卖家类型,0表示集市,1表示商城
  78. **/
  79. public $user_type;
  80. /**
  81. * 30天销量
  82. **/
  83. public $volume;
  84. /**
  85. * 折扣价
  86. **/
  87. public $zk_final_price;
  88. }
  89. ?>