123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?php
- namespace refill\yunlingds;
- 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= '10002623';
- const KEY = 'M4GZNKZCW6kasAMbpGxDn3AcPJiYDFS5';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_yunlingds.php";
- const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;charset=utf-8'];
- 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'
- ],
- ];
- }
|