12345678910111213141516171819202122 |
- <?php
- namespace refill\xunao;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://47.118.36.120:9009/prod-produce/api/provide';
- const QUERY_URL = 'http://47.118.36.120:9009/prod-produce/api/query';
- const USER_ID = '10';
- const KEY = 'e4aa17f34d5ef57271b3fce13d938185';
- // const NOTIFY_URL = BASE_SITE_URL . "/mobile/refill_xunao.php";
- const NOTIFY_URL = "https://www.xyzshops.cn/mobile/signature.php";
- const ExtHeaders = ['Content-Type: application/json'];
- const operator = [
- mtopcard\ChinaMobileCard => 'yd',
- mtopcard\ChinaUnicomCard => 'lt',
- mtopcard\ChinaTelecomCard => 'dx'
- ];
- }
|