12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php
- namespace refill\yuewen_fs_gd;
- use mtopcard;
- class config
- {
- //https://www.showdoc.com.cn/AQL666666/
- const ORDER_URL = 'http://123.60.5.158:9086/onlinepay.do';
- const QUERY_URL= 'http://123.60.5.158:9086/searchpay.do';
- const BALANCE_URL = 'http://123.60.5.158:9086/searchbalance.do';
- const USER_ID= '10002723';
- const KEY = 'y5izjYhZzbtZNAQEtaE2DfbhydtrwtKx';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_yuewen_fs_gd.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 =>
- [
- //广东
- 19 => [
- 50 => '3311',
- 100 => '3312',
- 200 => '10000000131',
- ],
- ],
- mtopcard\ChinaUnicomCard =>
- [
- ],
- mtopcard\ChinaTelecomCard =>
- [
- ]
- ];
- }
|