| 12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- /**
- * Created by PhpStorm.
- * Author: 芸众商城 www.yunzshop.com
- * Date: 2017/3/24
- * Time: 下午2:29
- */
- namespace app\common\services;
- class CashPay extends Pay
- {
- public function __construct()
- {
- }
- public function doPay($data = [])
- {
- return true;
- }
- function doRefund($out_trade_no, $totalmoney, $refundmoney)
- {
- // TODO: Implement doRefund() method.
- }
- public function doWithdraw($member_id, $out_trade_no, $money, $desc, $type)
- {
- // TODO: Implement doWithdraw() method.
- }
- public function buildRequestSign()
- {
- // TODO: Implement buildRequestSign() method.
- }
- }
|