1234567891011121314151617181920212223242526 |
- <?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 BALANCE_URL = 'http://8.129.227.254:10089/plat/api/old/queryBalance';
- 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'];
- const ERR_NO = [
- 1000,1001,1003,1004,2001,2002,2003,2020,2021,1006,2030,3003
- ];
- }
|