feat : refund
This commit is contained in:
27
app/Constants/Common/RefundCode.php
Normal file
27
app/Constants/Common/RefundCode.php
Normal file
@@ -0,0 +1,27 @@
|
||||
<?php
|
||||
|
||||
namespace App\Constants\Common;
|
||||
|
||||
class RefundCode
|
||||
{
|
||||
/**
|
||||
* 退款状态 1=待退款 2=待支付工具退款 3=退款成功 99=退款失败
|
||||
*/
|
||||
|
||||
/**
|
||||
* @Message("等待退款")
|
||||
*/
|
||||
CONST INT WAIT_REFUND = 1;
|
||||
/**
|
||||
* @Message("等待支付工具退款")
|
||||
*/
|
||||
CONST INT WAIT_BY_PAY_TOOL = 2;
|
||||
/**
|
||||
* @Message("退款成功")
|
||||
*/
|
||||
CONST INT REFUND_SUCCESS = 3;
|
||||
/**
|
||||
* @Message("退款失败")
|
||||
*/
|
||||
CONST INT REFUND_FAIL = 99;
|
||||
}
|
||||
Reference in New Issue
Block a user