1234567891011121314151617181920 |
- <?php
- namespace refill\yiqian;
- use mtopcard;
- class config
- {
- //http://118.31.46.58:8080/doc/api.html
- const ORDER_URL = 'http://118.31.46.58:8080/api/huafei/makeOrder';
- const QUERY_URL = 'http://118.31.46.58:8080/api/queryOrder';
- const BALANCE_URL = 'http://118.31.46.58:8080/api/queryBalance';
- const MCH_ID = 'M00221';
- const KEY = '0xHGoi3X6d78ZGfeai0UmgtTjghoqowg';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_yiqian.php";
- const operator = [
- mtopcard\ChinaMobileCard => '移动',
- mtopcard\ChinaUnicomCard => '联通',
- mtopcard\ChinaTelecomCard => '电信'
- ];
- }
|