CashPay.php 669 B

12345678910111213141516171819202122232425262728293031323334353637
  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 CashPay 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. // TODO: Implement doRefund() method.
  21. }
  22. public function doWithdraw($member_id, $out_trade_no, $money, $desc, $type)
  23. {
  24. // TODO: Implement doWithdraw() method.
  25. }
  26. public function buildRequestSign()
  27. {
  28. // TODO: Implement buildRequestSign() method.
  29. }
  30. }