feat : pay

This commit is contained in:
2025-02-17 16:46:41 +08:00
parent 1fb7bf4ea7
commit 8e6c6f9cb1
13 changed files with 353 additions and 13 deletions

View File

@@ -0,0 +1,18 @@
<?php
namespace App\Constants\Common;
class PayCode
{
/**
* @var int 状态:1=待支付,2=已支付
*/
const int WAIT_PAY = 1;
const int FINISH_PAY = 2;
/**
* @var int 支付方式:1=支付宝,2=微信
*/
const int ALIPAY = 1;
const int WECHAT_PAY = 2;
}