123456789101112131415161718192021 |
- <?php
- namespace refill\yinghuochong;
- use mtopcard;
- class config
- {
- //回调地址需在后台配置
- const ORDER_URL = 'http://47.96.106.104:9100/recharge/phone/order';
- const QUERY_URL = 'http://47.96.106.104:9100/recharge/phone/query';
- const BALANCE_URL = 'http://47.96.106.104:9100/customers/balance';
- const Account = '15811535608';
- const AppSecret = 'Q6AE5AD6A8DB14FF2AC35F5094D98A196Y';
- const QYKey = 'qhsvsyvj9rsekyvadlctr1ptx135fb3t';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_yinghuochong.php";
- const operator = [
- mtopcard\ChinaMobileCard => '移动',
- mtopcard\ChinaUnicomCard => '联通',
- mtopcard\ChinaTelecomCard => '电信'
- ];
- }
|