123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <?php
- namespace refill\tongmai;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://47.111.15.203:10186/plat/api/old/submitorder';
- const QUERY_URL= 'http://47.111.15.203:10186/plat/api/old/queryorder';
- const BALANCE_URL = 'http://47.111.15.203:10186/plat/api/old/queryBalance';
- const USER_ID= '200010';
- const KEY = '53f5570a38f54004b3b75886456968cb';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_tongmai.php";
- const operator = [
- mtopcard\ChinaMobileCard => 1,
- mtopcard\ChinaUnicomCard => 2,
- mtopcard\ChinaTelecomCard => 3
- ];
- const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;charset=utf-8'];
- const ERR_NOS = [
- 1000,1001,1003,1004,2001,2002,2003,2020,2021,1006,2030,3003
- ];
- const PRODUCT = [
- mtopcard\ChinaMobileCard => [
- 30 => 1000030,
- 50 => 1000050,
- 100 => 1000100,
- 200 => 1000200,
- 300 => 1000300,
- 500 => 1000500,
- ],
- mtopcard\ChinaUnicomCard => [
- 30 => 2000030,
- 50 => 2000050,
- 100 => 2000100,
- 200 => 2000200,
- 300 => 2000300,
- 500 => 2000500,
- ],
- mtopcard\ChinaTelecomCard => [
- 30 => 3000030,
- 50 => 3000050,
- 100 => 3000100,
- 200 => 3000200,
- 300 => 3000300,
- 500 => 3000500,
- ]
- ];
- }
|