修改alipay地址

This commit is contained in:
wanyongkang
2020-10-14 20:20:49 +08:00
parent 7d7d8f09ad
commit 91a914bcc4
1102 changed files with 217 additions and 26 deletions

22
enum/order/TbRefund.php Normal file
View File

@@ -0,0 +1,22 @@
<?php
/*
* @Descripttion: 淘宝退款
* @version:
* @Author: kangkang
* @Date: 2020-10-14 19:32:50
* @LastEditors: kangkang
* @LastEditTime: 2020-10-14 19:44:19
*/
namespace enum\order;
class TbRefund
{
//淘宝退款状态
public static $refundStatus = [
0 => '待处理',
1 => '已同意',
2 => '已拒绝',
3 => '已关闭',
];
}