123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?php
- namespace refill\dazhanggui_fs_gd;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://47.101.136.81:10186/plat/api/old/submitorder';
- const QUERY_URL= 'http://47.101.136.81:10186/plat/api/old/queryorder';
- const BALANCE_URL = 'http://47.101.136.81:10186/plat/api/old/queryBalance';
- const USER_ID= '200039';
- const KEY = '83e190d4be9643a4abac61095938662e';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_dazhanggui_fs_gd.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 => [
- //广东
- 19 => [
- 50 => 1440050,
- 100 => 1440100,
- 200 => 1440200,
- ],
- ]
- ];
- //key格式 卡类型-面值-regin_no
- const Price = [
- //移动
- "4-50-19" => 48, "4-100-19" => 96, "4-200-19" => 192,//广东 19
- ];
- }
|