| 1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace addons\YunfastPay\common\enums;
- class YunfastPayEnum
- {
- /**
- * 插件名称
- */
- const ADDONS_NAME_YUNFAST_PAY = 'YunfastPay';
- /**
- * 银典支付标识
- */
- const YUNFAST_PAY = 'yunfast_pay';
- /**
- * 银典支付名称
- */
- const YUNFAST_PAY_NAME = '银典支付';
- /**
- * 收银台订单
- */
- const CASHIER_ORDER = 'cashier_order';
- /**
- * 商城订单
- */
- const MALL_ORDER = 'order';
- }
|