1234567891011121314151617181920 |
- <?php
- namespace refill\yiqianfs;
- 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 = 'M00276';
- const KEY = 'AZxFt1kP5AiXncTDM3aEtZHGquq5EQpG';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_yiqianfs.php";
- const operator = [
- mtopcard\ChinaMobileCard => '移动',
- mtopcard\ChinaUnicomCard => '联通',
- mtopcard\ChinaTelecomCard => '电信'
- ];
- }
|