1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- namespace refill\beirui_trd;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://106.15.45.70:9086/onlinepay.do';
- const QUERY_URL= 'http://106.15.45.70:9086/searchpay.do';
- const BALANCE_URL = 'http://106.15.45.70:9086/searchbalance.do';
- const USER_ID= '10002863';
- const KEY = 'dDb6mDMdEr5tcYprRCPKJpJXrGCnXSP4';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_beirui_trd.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', '7001'
- ];
- const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;'];
- const ProductIdS = [
- mtopcard\ChinaMobileCard =>
- [
- 100 => '30000000910',
- 200 => '30000000911',
- ],
- mtopcard\ChinaUnicomCard =>
- [
- ],
- mtopcard\ChinaTelecomCard =>
- [
- ]
- ];
- }
|