manghe/app/api/controller/Withdraw.php
2025-03-21 19:25:07 +08:00

16 lines
243 B
PHP
Executable File

<?php
declare (strict_types=1);
namespace app\api\controller;
use app\api\controller\Base;
use app\common\model\Withdraw as WithdrawModel;
use app\common\model\User;
use think\facade\Db;
use \think\Request;
class Withdraw extends Base
{
}