12345678910111213141516171819202122232425 |
- <?php
- namespace refill\weishengywt;
- 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= '200045';
- const KEY = '4d555d7d7c8a4d8ea5e3bc9506967690';
- const NOTIFY_URL = BASE_SITE_URL . "/racc/callback/lingzh/weishengywt.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
- ];
- }
|