12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- namespace refill\yunling;
- 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= '10002504';
- const KEY = 'HdxxWScBF6aYykbB33r8S5CQcS5myYZZ';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/refill_yunling.php";
- const operator = [
- mtopcard\ChinaMobileCard => 'yd',
- mtopcard\ChinaUnicomCard => 'lt',
- mtopcard\ChinaTelecomCard => 'dx'
- ];
- const product_id = [
- mtopcard\ChinaMobileCard => [
- 30 => '30000000908',
- 50 => '30000000909',
- 100 => '30000000910',
- 200 => '30000000911'
- ],
- mtopcard\ChinaUnicomCard => [
- 30 => '30000000731',
- 50 => '30000000732',
- 100 => '30000000733',
- 200 => '30000000992'
- ],
- mtopcard\ChinaTelecomCard => [
- 30 => '30000000736',
- 50 => '30000000737',
- 100 => '30000000738',
- 200 => '30000000739'
- ],
- ];
- }
|