18 lines
301 B
PHP
18 lines
301 B
PHP
<?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;
|
|
} |