1234567891011121314151617181920 |
- <?php
- namespace refill\wuchen;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://47.104.140.24:8080/orders';
- const QUERY_URL = 'http://47.104.140.24:8080/orders/fetch_orders';
- const APPID = '70016';
- const APP_KEY = 'Q4X5OU9U8SSTN5CRWU2U0ANC6VBX3YIJ';
- const NOTIFY_URL = BASE_SITE_URL . "/racc/callback/lingzh/wuchen.php";
- const operator = [
- mtopcard\ChinaMobileCard => 1,
- mtopcard\ChinaUnicomCard => 2,
- mtopcard\ChinaTelecomCard => 3
- ];
- }
|