feat : pay
This commit is contained in:
18
app/Constants/Common/PayCode.php
Normal file
18
app/Constants/Common/PayCode.php
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user