12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?php
- namespace refill\ruixunda;
- use mtopcard;
- class config
- {
- //https://www.showdoc.com.cn/AQL666666/
- const ORDER_URL = 'http://47.96.69.138:9086/onlinepay.do';
- const QUERY_URL= 'http://47.96.69.138:9086/searchpay.do';
- const BALANCE_URL = 'http://47.96.69.138:9086/searchbalance.do';
- const USER_ID= '10002505';
- const KEY = 'k2xkSaFr4BH5ZD5iDWf5Ha4QTE3fKtN5';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_ruixunda.php";
- const operator = [
- mtopcard\ChinaMobileCard => 'yd',
- mtopcard\ChinaUnicomCard => 'lt',
- mtopcard\ChinaTelecomCard => 'dx'
- ];
- const ERR_NOS = [
- '5001','5002','5003','5004','5005','5008','5009','5010','5011','5012'
- ];
- const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;'];
- const ProductIdS = [
- mtopcard\ChinaMobileCard =>
- [
- 10 => '101685',
- 20 => '101686',
- 30 => '101687',
- 50 => '101688',
- 100 => '101689',
- 200 => '101690',
- ],
- mtopcard\ChinaUnicomCard =>
- [
- 10 => '101703',
- 20 => '101704',
- 30 => '101705',
- 50 => '101706',
- 100 => '101707',
- 200 => '101708',
- 300 => '101709',
- 500 => '101710',
- ],
- mtopcard\ChinaTelecomCard =>
- [
- 10 => '101721',
- 20 => '101722',
- 30 => '101723',
- 50 => '101724',
- 100 => '101725',
- 200 => '101726',
- ]
- ];
- }
|