You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
<?php
|
|
|
|
namespace app\money\controller\api;
|
|
|
|
class Config extends Base
|
|
{
|
|
|
|
/**
|
|
* 获取余额充值设置
|
|
* @date 2022-11-01
|
|
*/
|
|
public function getRechargeConfig()
|
|
{
|
|
$config_logic = new \app\money\logic\Config();
|
|
|
|
$result = $config_logic -> getRechargeConfig();
|
|
|
|
return json($result);
|
|
}
|
|
|
|
}
|