123456789101112131415161718192021222324 |
- <?php
- namespace refill\wangliantx;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://39.99.143.124:8177/soft/onlinepay.do';
- const QUERY_URL= 'http://39.99.143.124:8177/soft/searchpay.do';
- const BALANCE_UTL = 'http://39.99.143.124:8177/soft/searchbalance.do';
- const USER_ID= '10073664';
- const KEY = 'ADE28CAF69A0FFE7E5E3C5FD5EBCA7F9';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_wangliantx.php";
- const operator = [
- mtopcard\ChinaMobileCard => '移动',
- mtopcard\ChinaUnicomCard => '联通',
- mtopcard\ChinaTelecomCard => '电信'
- ];
- const ERR_NOS = [
- '9','1001','5001','5002','5003','5004','5005','5006','5007','5008','5009','5010','5011','5012','5013','5014','5015'
- ];
- }
|