12345678910111213141516171819 |
- <?php
- namespace refill\pushang;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://123.60.45.58:8080/api/huafei/makeOrder';
- const QUERY_URL = 'http://123.60.45.58:8080/api/queryOrder';
- const BALANCE_URL = 'http://123.60.45.58:8080/api/queryBalance';
- const MCH_ID = 'M00050';
- const KEY = 'mg035JzCXuno967P54TbEbyC15kCtPwA';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_pushang.php";
- const operator = [
- mtopcard\ChinaMobileCard => '移动',
- mtopcard\ChinaUnicomCard => '联通',
- mtopcard\ChinaTelecomCard => '电信'
- ];
- }
|