12345678910111213141516171819 |
- <?php
- namespace refill\yunlingfs;
- 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 USER_ID = '10002543';
- const KEY = 'c3SRnHJ7Bcj544MsdxY2mesADs33QGtz';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/refill_yunlingfs.php";
- const operator = [
- mtopcard\ChinaMobileCard => 'yd',
- mtopcard\ChinaUnicomCard => 'lt',
- mtopcard\ChinaTelecomCard => 'dx'
- ];
- }
|