1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- namespace refill\guantu;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://8.142.121.158:8911/api/hf/order/submit';
- const QUERY_URL = 'http://8.142.121.158:8911/api/order/query';
- const BALANCE_URL = 'http://8.142.121.158:8911/api/account/balance';
- const APP_ID = 't7gmui2D3w';
- const APP_SECRET = 'wDuesIDEmqheNPoC';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_guantu.php";
- const PRODUCT = [
- mtopcard\ChinaMobileCard => [
- 30 => 100069,
- 50 => 100070,
- 100 => 100071,
- 200 => 100072,
- ],
- mtopcard\ChinaUnicomCard => [
- 30 => 100009,
- 50 => 100010,
- 100 => 100011,
- 200 => 100012,
- ],
- mtopcard\ChinaTelecomCard => [
- 30 => 100013,
- 50 => 100014,
- 100 => 100015,
- 200 => 100016,
- ],
- ];
- const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;charset=utf-8'];
- const ERRCODES = ['-10', '-12', '-13', '-14', '-15', '-16', '-18', '-21'];
- }
|