38 lines
798 B
PHP
38 lines
798 B
PHP
<?php
|
|
/*
|
|
* @Descripttion:
|
|
* @version:
|
|
* @Author: kangkang
|
|
* @Date: 2020-10-22 15:35:49
|
|
* @LastEditors: kangkang
|
|
* @LastEditTime: 2020-10-23 11:44:10
|
|
*/
|
|
namespace enum\order;
|
|
|
|
class UserChargeOrder
|
|
{
|
|
|
|
//付款状态
|
|
public static $OrderState = [
|
|
10 => '待付款',
|
|
20 => '已付款',
|
|
30 => '申请退款',
|
|
40 => '人工退款',
|
|
50 => '自动退款',
|
|
80 => '超时关闭',
|
|
90 => '订单完成',
|
|
];
|
|
|
|
public static $NoPay = 10;
|
|
public static $PayOk = 20;
|
|
public static $RequestRefund = 30;
|
|
public static $UserRefundOver = 40;
|
|
public static $AutoRefundOver = 50;
|
|
public static $TimeOutClose = 80;
|
|
public static $Complete = 90;
|
|
|
|
//付款完成
|
|
public static $PayComplete = [20,90];
|
|
|
|
}
|