This commit is contained in:
wanyongkang
2020-10-23 16:48:49 +08:00
parent 1a58344e46
commit fe0f0a63b3
11 changed files with 374 additions and 7 deletions

37
enum/order/UserScore.php Normal file
View File

@@ -0,0 +1,37 @@
<?php
/*
* @Descripttion:
* @version:
* @Author: kangkang
* @Date: 2020-10-22 15:35:49
* @LastEditors: kangkang
* @LastEditTime: 2020-10-22 17:43:45
*/
namespace enum\order;
class UserScore
{
public static $ScoreName = [
1 => '管理员充值',
2 => '管理员扣除',
3 => '淘宝充值',
4 => '淘宝退款',
5 => '账号退款',
6 => '账号付款',
7 => '用户充值',
8 => '用户提现扣除',
9 => '提现被拒退还',
];
public static $ManageAdd = 1;
public static $ManagerDeduct = 2;
public static $TaoBaoAdd = 3;
public static $TaoBaoRefund = 4;
public static $AccountRefund = 5;
public static $Pay = 6;
public static $UserCharge = 7;
public static $UserCashOut = 8;
public static $ReturnMoney = 9;
}