This commit is contained in:
37
enum/order/UserScore.php
Normal file
37
enum/order/UserScore.php
Normal 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;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user