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.

17 lines
262 B

6 years ago
  1. <?php
  2. namespace App\Constants\v3;
  3. use Hyperf\Constants\AbstractConstants;
  4. class Payment extends AbstractConstants
  5. {
  6. /**
  7. * @Message("微信支付")
  8. */
  9. const WECHAT = 1;
  10. /**
  11. * @Message("余额支付")
  12. */
  13. const BALANCE = 2;
  14. }