12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- namespace refill\xingchuang_trd;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://121.43.238.2:16188/plat/api/hf/submitorder';
- const QUERY_URL= 'http://121.43.238.2:16188/plat/api/queryorder';
- const BALANCE_URL = 'http://121.43.238.2:16188/plat/api/querybalance';
- const USER_ID= '100006';
- const KEY = 'aabb82748e484189bbe1d57a1d86eafb';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_xingchuang_trd.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
- ];
- const Product = [
- mtopcard\ChinaMobileCard => [
- 100 => 1000100,
- 200 => 1000200,
- ],
- mtopcard\ChinaUnicomCard => [
- ],
- mtopcard\ChinaTelecomCard => [
- ],
- ];
- }
|