This repository has been archived on 2020-11-09. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pingan/config/account.php
2020-08-06 16:37:53 +08:00

25 lines
365 B
PHP

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