优惠券订单及其他脚本

Contenteffectlist.php 574B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <?php
  2. /**
  3. * contentEffectList
  4. * @author auto create
  5. */
  6. class Contenteffectlist
  7. {
  8. /**
  9. * 当日直接引导订单数
  10. **/
  11. public $alipay_num;
  12. /**
  13. * 内容id
  14. **/
  15. public $content_id;
  16. /**
  17. * cpcFee
  18. **/
  19. public $cpc_fee;
  20. /**
  21. * cpsPreFee
  22. **/
  23. public $cps_pre_fee;
  24. /**
  25. * cpsSettleFee
  26. **/
  27. public $cps_settle_fee;
  28. /**
  29. * 当日该内容下宝贝点击次数
  30. **/
  31. public $ipv;
  32. /**
  33. * 当日该内容下宝贝点击人数
  34. **/
  35. public $iuv;
  36. /**
  37. * 媒体pid
  38. **/
  39. public $pid;
  40. /**
  41. * 时间
  42. **/
  43. public $time;
  44. }
  45. ?>