You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
254 B
11 lines
254 B
<?php
|
|
namespace app\common\enum;
|
|
|
|
class RechargeOrderEnum
|
|
{
|
|
const WECHAT_PAY = 1; //微信支付
|
|
const ALI_PAY = 2; //支付宝支付
|
|
|
|
const PAY_STATUS_NO_PAID = 0; //待支付
|
|
const PAY_STATUS_PAID = 1; //已支付
|
|
}
|