123456789101112131415161718 |
- <?php
- namespace refill\youhe;
- class config
- {
- //回调地址需在商户后台配置
- const ORDER_URL = 'http://106.14.252.179:8081/api/charge/v2';
- const QUERY_URL = 'http://106.14.252.179:8081/api/order/query';
- const BALANCE_URL = 'http://106.14.252.179:8081/api/order/balance';
- const PARTNER_NO = 'yezi';
- const KEY = '65fe2a4a16f14c5799a8247d59e68ced';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_youhe.php";
- const ExtHeaders = ['Content-Type: application/json'];
- }
|