1234567891011121314151617181920 |
- <?php
- namespace refill\moxj_new;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://118.31.228.170/pushQuickOrder';
- const QUERY_URL = 'http://118.31.228.170/pushOrderQuery';
- const BALANCE_URL = 'http://118.31.228.170/balance';
- const MCH_ID = '300459017';
- const KEY = 'pWQxKXdOiKOMmZhsCOgiygmleBmHBpZx';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_moxj_new.php";
- const operator = [
- mtopcard\ChinaMobileCard => 'cmcc',
- mtopcard\ChinaUnicomCard => 'cucc',
- mtopcard\ChinaTelecomCard => 'ctcc'
- ];
- const ExtHeaders = ['Content-Type: application/json'];
- }
|