12345678910111213141516171819202122232425 |
- <?php
- namespace refill\weishengysix;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://47.96.251.76:10186/plat/api/old/submitorder';
- const QUERY_URL= 'http://47.96.251.76:10186/plat/api/old/queryorder';
- const USER_ID= '200074';
- const KEY = 'adb228945705404e9500cd78eaa111d2';
- const NOTIFY_URL = BASE_SITE_URL . "/racc/callback/lingzh/weishengysix.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
- ];
- }
|