123456789101112131415161718192021222324252627 |
- <?php
- namespace refill\xinruiheng_fs;
- use mtopcard;
- class config
- {
- //http://www.firstsup.net/showdoc
- const ORDER_URL = 'http://121.37.166.253:9086/onlinepay.do';
- const QUERY_URL= 'http://121.37.166.253:9086/searchpay.do';
- const BALANCE_URL = 'http://121.37.166.253:9086/searchbalance.do';
- const USER_ID= '10002764';
- const KEY = '2D3mXKwDdWkM5EKiwQTQ5ZehB7GkZE2J';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_xinruiheng_fs.php";
- const operator = [
- mtopcard\ChinaMobileCard => 'yd',
- mtopcard\ChinaUnicomCard => 'lt',
- mtopcard\ChinaTelecomCard => 'dx'
- ];
- const ERR_NOS = [
- '5001','5002','5003','5004','5005','5008','5009','5010','5011','5012','7001'
- ];
- const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;'];
- }
|