优惠券订单及其他脚本

TbkEvent.php 397B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * 淘客定向招商活动基本信息
  4. * @author auto create
  5. */
  6. class TbkEvent
  7. {
  8. /**
  9. * 定向招商活动结束开始时间
  10. **/
  11. public $end_time;
  12. /**
  13. * 淘宝联盟定向招商活动id
  14. **/
  15. public $event_id;
  16. /**
  17. * 淘宝联盟定向招商活动名称
  18. **/
  19. public $event_title;
  20. /**
  21. * 定向招商活动结束开始时间
  22. **/
  23. public $start_time;
  24. }
  25. ?>