12345678910111213141516171819202122232425 |
- <?php
- namespace refill\fuyuan;
- use mtopcard;
- class config
- {
- //回调地址需上游配置
- const ORDER_URL = 'http://api.miaochongwang.com:8003/dopay.aspx';
- const QUERY_URL= 'http://api.miaochongwang.com:8003/orderquery.aspx';
- const BALANCE_URL = 'http://api.miaochongwang.com:8003/balance.aspx';
- const AGENT_ID = '100354';
- const KEY = 'FTxjJs88iD81C6vY6kRvD7CAjP9B0s5r';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_fuyuan.php";
- const operator = [
- mtopcard\ChinaMobileCard => '移动',
- mtopcard\ChinaUnicomCard => '联通',
- mtopcard\ChinaTelecomCard => '电信'
- ];
- const ERR_NOS = [
- '1001','1002','1003','1005','1006','1007','1008','1009','1010','1011','1012'
- ];
- }
|