16 lines
243 B
PHP
Executable File
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
|
|
{
|
|
|
|
|
|
} |