优惠券订单及其他脚本

GenPwdIsvParamDto.php 359B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. /**
  3. * 口令参数
  4. * @author auto create
  5. */
  6. class GenPwdIsvParamDto
  7. {
  8. /**
  9. * 扩展字段JSON格式
  10. **/
  11. public $ext;
  12. /**
  13. * 口令弹框logoURL
  14. **/
  15. public $logo;
  16. /**
  17. * 口令弹框内容
  18. **/
  19. public $text;
  20. /**
  21. * 口令跳转url
  22. **/
  23. public $url;
  24. /**
  25. * 生成口令的淘宝用户ID
  26. **/
  27. public $user_id;
  28. }
  29. ?>