You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
377 B
29 lines
377 B
<?php
|
|
|
|
namespace App\Traits;
|
|
|
|
trait StatementTraits
|
|
{
|
|
|
|
public static $type = [
|
|
'App\Models\Order',
|
|
'App\Models\Withdrawal',
|
|
];
|
|
|
|
public static $TypeText = [
|
|
'App\Models\Order' => '订单',
|
|
'App\Models\Withdrawal' => '提现',
|
|
];
|
|
|
|
public static $deposit = [
|
|
1,
|
|
2,
|
|
3,
|
|
];
|
|
|
|
public static $depositText = [
|
|
1 => '正常',
|
|
2 => '冻结',
|
|
3 => '消费'
|
|
];
|
|
}
|