123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
- namespace refill\dongye;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://8.134.53.93:9086/onlinepay.do';
- const QUERY_URL= 'http://8.134.53.93:9086/searchpay.do';
- const BALANCE_URL = 'http://8.134.53.93:9086/searchbalance.do';
- const USER_ID= '10003105';
- const KEY = 'nxmpEYzCQCQMxtAtrihBRSitxHbk63km';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_dongye.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 product_id = [
- // mtopcard\ChinaMobileCard => [
- // 5 => '30000005458', 6 => '30000005459', 7 => '30000005460', 8 => '30000005461', 9 => '30000005462',
- // 10 => '30000001056', 20 => '30000001057', 30 => '30000001058',
- // 100 => '30000001060', 200 => '30000001061', 300 => '30000001062', 500 => '30000001063'
- // ],
- //移动拼多多资源
- mtopcard\ChinaMobileCard => [
- 50 => '30000005601',
- 100 => '30000005602', 200 => '30000005603', 300 => '30000005604', 500 => '30000005605'
- ],
- //沃支付
- mtopcard\ChinaUnicomCard => [
- 30 => '30000001074', 50 => '30000001075', 100 => '30000001076', 200 => '30000001077', 300 => '30000001078'
- ],
- //掌厅
- // mtopcard\ChinaUnicomCard => [
- // 50 => '30000005533', 100 => '30000005534', 200 => '30000005535', 300 => '30000005536', 500 => '30000005537'
- // ],
- mtopcard\ChinaTelecomCard => [
- 1 => '30000005430', 2 => '30000005431', 3 => '30000005432', 4 => '30000005433',
- 5 => '30000005435', 6 => '30000005436', 7 => '30000005437', 8 => '30000005438', 9 => '30000005439',
- 10 => '30000001080', 20 => '30000001081', 30 => '30000001082',
- 100 => '30000001084', 200 => '30000001085', 300 => '30000001086', 500 => '30000001087'
- ],
- ];
- }
|