12345678910111213141516171819202122232425 |
- <?php
- namespace refill\tianchen_sec;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://47.114.98.104:10081/plat/api/old/submitorder';
- const QUERY_URL= 'http://47.114.98.104:10081/plat/api/old/queryorder';
- const BALANCE_URL = 'http://47.114.98.104:10081/plat/api/old/queryBalance';
- const USER_ID= '100322';
- const KEY = '53b13cd2fbb144799c644c0f8aca4219';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_tianchen_sec.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
- ];
- }
|