12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- namespace refill\siyicheng;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://121.41.113.253:9666/api/hfplat/info/submit';
- const QUERY_URL = 'http://121.41.113.253:9666/api/info/query';
- const BALANCE_URL = 'http://121.41.113.253:9666/api/wallet/balance';
- const APP_ID = 'A3PsRxMTnw';
- const APP_SECRET = 'XtcfHywlUEfPdaZw';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_siyicheng.php";
- const PRODUCT = [
- mtopcard\ChinaMobileCard => [
- 50 => 100211,
- 100 => 100212,
- 200 => 100213,
- ],
- mtopcard\ChinaUnicomCard => [
- 30 => 100218,
- 50 => 100219,
- 100 => 100220,
- 200 => 100221,
- ],
- mtopcard\ChinaTelecomCard => [
- ]
- ];
- const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;charset=utf-8'];
- const ERRCODES = ['-10', '-12', '-13', '-14', '-15', '-16', '-18', '-21'];
- }
|