截流自动化的商城平台
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.

RechargeOrderEnum.php 254B

1234567891011
  1. <?php
  2. namespace app\common\enum;
  3. class RechargeOrderEnum
  4. {
  5. const WECHAT_PAY = 1; //微信支付
  6. const ALI_PAY = 2; //支付宝支付
  7. const PAY_STATUS_NO_PAID = 0; //待支付
  8. const PAY_STATUS_PAID = 1; //已支付
  9. }