Files
pingan_new/config/account.php
2020-08-06 16:42:18 +08:00

25 lines
365 B
PHP

<?php
return [
/**
* 账户是否可以为负数
*/
'can_minus' => [
'balance' => false,
'score' => false,
],
/**
* 是否立即扣款
*/
'deductions' => false,
/**
* 账户类型
*/
'account_type' => [
'balance' => '总分润',
'score' => '已打款',
],
];