1234567891011121314151617181920212223242526 |
- <?php
- namespace refill\miaoxt;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://47.118.46.242:10186/plat/api/old/submitorder';
- const QUERY_URL= 'http://47.118.46.242:10186/plat/api/old/queryorder';
- const BALANCE_URL = 'http://47.118.46.242:10186/plat/api/old/queryBalance';
- const USER_ID= '200050';
- const KEY = 'c906bb677edc4a829714058044ef9e28';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_miaoxt.php";
- const operator = [
- mtopcard\ChinaMobileCard => 1,
- mtopcard\ChinaUnicomCard => 2,
- mtopcard\ChinaTelecomCard => 3
- ];
- const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;charset=utf-8'];
- const ERR_NO = [
- 1000,1001,1003,1004,2001,2002,2003,2020,2021,1006,2030,3003
- ];
- }
|