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.

22 lines
332 B

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