123456789101112131415161718192021222324252627 |
- <?php
- namespace refill\yunchonggong_yd;
- use mtopcard;
- class config
- {
- //954
- const ORDER_URL = 'http://47.98.253.40:10186/plat/api/old/submitorder';
- const QUERY_URL= 'http://47.98.253.40:10186/plat/api/old/queryorder';
- const BALANCE_URL= 'http://47.98.253.40:10186/plat/api/old/queryBalance';
- const USER_ID= '200043';
- const KEY = '028a435cc21f42f39a4bb2d74bba2a34';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_yunchonggong_yd.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_NOS = [
- 1000,1001,1003,1004,2001,2002,2003,2020,2021,1006,2030,3003
- ];
- }
|