38 lines
848 B
PHP
38 lines
848 B
PHP
|
|
<?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;
|
||
|
|
|
||
|
|
}
|