Files
water-back/config/withdraw.php
2023-01-11 11:00:43 +08:00

14 lines
467 B
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
return [
'name' => '提现模块',
'is_chain' => false,//提现账户是否是区块链true 是 false 否
'account' => 'balance',//提现账户
'withdraw_no_counter_length' => 8,
'model' => [
'account_rules' => Modules\User\Models\AccountRule::class,//规则表
'chain_money' => App\Models\DayDataChain::class,//记录金额表
],
];