1
0

提交代码

This commit is contained in:
2020-08-06 14:45:56 +08:00
commit 9d0d5f4be9
361 changed files with 36445 additions and 0 deletions

42
config/user_account.php Normal file
View File

@@ -0,0 +1,42 @@
<?php
/**
* 用户关系扩展配置
*/
return [
/**
* 用户模型
*/
'user_model' => \App\Models\User::class,
/**
* 账户是否可以为负数
*/
'can_minus' => [
'cash' => false,
'score' => true,
'act_a' => true,
'act_b' => true,
'act_c' => true,
'act_d' => true,
],
/**
* 是否立即扣款
*/
'deductions' => false,
/**
* 账户类型
*/
'account_type' => [
'cash' => '现金账户',
'score' => '积分账户',
'act_a' => '预留账户',
'act_b' => '预留账户',
'act_c' => '预留账户',
'act_d' => '预留账户',
],
];