first commit

This commit is contained in:
云泽网
2025-07-27 21:42:34 +08:00
commit c1cce5ccb4
2779 changed files with 340042 additions and 0 deletions
@@ -0,0 +1,22 @@
<?php
namespace app\api\controller;
use app\admin\logic\WechatMerchantTransferLogic;
use app\admin\model\WithdrawApply;
class Test extends ApiBase
{
public $like_not_need_login = ['test'];
public function test()
{
$withdraw = WithdrawApply::where('id', 1)->findOrEmpty()->toArray();
$result = WechatMerchantTransferLogic::transfer($withdraw);
// $result = WechatMerchantTransferLogic::details($withdraw);
halt($result);
}
}