12345678910111213141516171819 |
- <?php
- namespace refill\yunling;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://39.101.180.197:8177/soft/onlinepay.do';
- const QUERY_URL= 'http://39.101.180.197:8177/soft/searchpay.do';
- const USER_ID= '10073505';
- const KEY = 'FA302267C7EC5E3840264E6044E48CD1';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/refill_yunling.php";
- const operator = [
- mtopcard\ChinaMobileCard => '移动',
- mtopcard\ChinaUnicomCard => '联通',
- mtopcard\ChinaTelecomCard => '电信'
- ];
- }
|