YunfastPayEnum.php 483 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. namespace addons\YunfastPay\common\enums;
  3. class YunfastPayEnum
  4. {
  5. /**
  6. * 插件名称
  7. */
  8. const ADDONS_NAME_YUNFAST_PAY = 'YunfastPay';
  9. /**
  10. * 银典支付标识
  11. */
  12. const YUNFAST_PAY = 'yunfast_pay';
  13. /**
  14. * 银典支付名称
  15. */
  16. const YUNFAST_PAY_NAME = '银典支付';
  17. /**
  18. * 收银台订单
  19. */
  20. const CASHIER_ORDER = 'cashier_order';
  21. /**
  22. * 商城订单
  23. */
  24. const MALL_ORDER = 'order';
  25. }