123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- namespace refill\yunlingfs;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://121.89.243.74:9086/onlinepay.do';
- const QUERY_URL = 'http://121.89.243.74:9086/searchpay.do';
- const BALANCE_URL = 'http://121.89.243.74:9086/searchbalance.do';
- const USER_ID = '10002543';
- const KEY = 'c3SRnHJ7Bcj544MsdxY2mesADs33QGtz';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/refill_yunlingfs.php";
- const operator = [
- mtopcard\ChinaMobileCard => 'yd',
- mtopcard\ChinaUnicomCard => 'lt',
- mtopcard\ChinaTelecomCard => 'dx'
- ];
- const product_id = [
- mtopcard\ChinaUnicomCard => [
- 30 => '30000000731',
- 50 => '30000000732',
- 100 => '30000000733',
- 200 => '30000000992'
- ],
- mtopcard\ChinaTelecomCard => [
- 30 => '30000000736',
- 50 => '30000000737',
- 100 => '30000000738',
- 200 => '30000000739',
- 300 => '30000000740',
- 500 => '30000000741'
- ],
- ];
- }
|