BackendPay.php 714 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * Author: 芸众商城 www.yunzshop.com
  5. * Date: 2017/3/24
  6. * Time: 下午2:29
  7. */
  8. namespace app\common\services;
  9. class BackendPay extends Pay
  10. {
  11. public function __construct()
  12. {
  13. }
  14. public function doPay($data = [])
  15. {
  16. return true;
  17. }
  18. function doRefund($out_trade_no, $totalmoney, $refundmoney)
  19. {
  20. return true;
  21. // TODO: Implement doRefund() method.
  22. return true;
  23. }
  24. public function doWithdraw($member_id, $out_trade_no, $money, $desc, $type)
  25. {
  26. // TODO: Implement doWithdraw() method.
  27. }
  28. public function buildRequestSign()
  29. {
  30. // TODO: Implement buildRequestSign() method.
  31. }
  32. }