上线金柚产品

This commit is contained in:
“wanyongkang”
2024-02-01 17:13:32 +08:00
parent 058b999606
commit 323ae40042
15 changed files with 1407 additions and 3 deletions

View File

@@ -4,8 +4,8 @@
* @version:
* @Author: kangkang
* @Date: 2020-10-22 15:35:49
* @LastEditors: kangkang
* @LastEditTime: 2020-11-18 10:41:10
* @LastEditors: “wanyongkang” “937888580@qq.com”
* @LastEditTime: 2024-01-27 14:42:08
*/
namespace enum\account;
@@ -26,4 +26,25 @@ class ProductAccount
public static $AgainBuys = 4;
public static $Origin = 100;
public static $Test = 200;
public static $status = [
1 => '正常',
2 => '退款',
];
public static $Normal = 1;
public static $Refund = 2;
public static $ChargeStatus = [
1 => '成功',
2 => '失败',
3 => '关闭',
4 => '超时',
];
public static $Success = 1;
public static $Fail = 2;
public static $Close = 3;
public static $Outtime = 4;
}