123456789101112131415161718192021 |
- <?php
- namespace refill\yonghe;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://8.129.227.254:10089/plat/api/old/submitorder';
- const QUERY_URL = 'http://8.129.227.254:10089/plat/api/old/queryorder';
- const USER_ID = '200115';
- const KEY = '9147cb5fdf3e41699dab66626d1b741c';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_yonghe.php";
- const operator = [
- mtopcard\ChinaMobileCard => 1,
- mtopcard\ChinaUnicomCard => 2,
- mtopcard\ChinaTelecomCard => 3
- ];
- const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;charset=utf-8'];
- }
|