Files
anmo/server/app/common/model/withdraw/WithdrawConfig.php
2025-08-19 14:16:51 +08:00

21 lines
316 B
PHP
Executable File

<?php
namespace app\common\model\withdraw;
use app\common\model\BaseModel;
/**
* 提现配置表
* Class WithdrawConfig
* @package app\common\model\withdraw
*/
class WithdrawConfig extends BaseModel
{
protected $json = ['config'];
// 设置JSON数据返回数组
protected $jsonAssoc = true;
}