12345678910111213141516171819202122 |
- <?php
- namespace refill\tianchen;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://47.114.98.104:10081/plat/api/px/submit';
- const QUERY_URL = 'http://47.114.98.104:10081/plat/api/px/query';
- const BALANCE_URL = 'http://47.114.98.104:10081/plat/api/px/balance';
- const MCHID = '100157';
- const KEY = '2ffd248a03d64e3b91343decf20729e4';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_tianchen.php";
- const operator = [
- mtopcard\ChinaMobileCard => 1,
- mtopcard\ChinaUnicomCard => 2,
- mtopcard\ChinaTelecomCard => 3
- ];
- const ExtHeaders = ['Content-Type: application/json'];
- }
|