优惠券订单及其他脚本

TbkFavorites.php 286B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * 淘宝客选品库
  4. * @author auto create
  5. */
  6. class TbkFavorites
  7. {
  8. /**
  9. * 选品库id
  10. **/
  11. public $favorites_id;
  12. /**
  13. * 选品组名称
  14. **/
  15. public $favorites_title;
  16. /**
  17. * 选品库类型,1:普通类型,2高佣金类型
  18. **/
  19. public $type;
  20. }
  21. ?>