This commit is contained in:
2025-10-29 15:32:26 +08:00
parent d90614805b
commit b7462657cd
78921 changed files with 2753938 additions and 71 deletions

View File

@@ -0,0 +1,35 @@
<?php
/**
*/
namespace addon\memberwithdraw\shop\controller;
use addon\memberwithdraw\model\Withdraw as WithdrawModel;
use app\shop\controller\BaseShop;
/**
* 会员提现
*/
class Withdraw extends BaseShop
{
/**
* 转账
*/
public function transfer()
{
if (request()->isJson()) {
$id = input('id', 0);
$withdraw_model = new WithdrawModel();
$result = $withdraw_model->transfer($id);
return $result;
}
}
}