123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <?php
- namespace refill\dazhanggui_fs;
- 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= '200027';
- const KEY = '4ea747d3aa7b41edad874af250b5a75f';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_dazhanggui_fs.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 => [
- //江苏
- 10 => [
- 50 => 1320050,
- 100 => 1320100,
- 200 => 1320200,
- ],
- //山东
- 15 => [
- 50 => 1370050,
- 100 => 1370100,
- 200 => 1370200,
- ],
- //贵州
- 24 => [
- 30 => 1520030,
- 50 => 1520050,
- 100 => 1520100,
- 200 => 1520200,
- ],
- ],
- mtopcard\ChinaTelecomCard => [
- //湖南
- 18 => [
- 30 => 3430030,
- 50 => 3430050,
- 100 => 3430100,
- 200 => 3430200,
- ],
- ],
- ];
- //key格式 卡类型-面值-regin_no
- const Price = [
- //移动
- "4-50-10" => 46.8, "4-100-10" => 93.6, "4-200-10" => 187.2,//江苏 10
- "4-50-15" => 46.8, "4-100-15" => 93.6, "4-200-15" => 187.2,//山东 15
- "4-30-24" => 28.05, "4-50-24" => 46.75, "4-100-24" => 93.5, "4-200-24" => 187,//山东 24
- //电信
- "6-30-18" => 28.26, "6-50-18" => 47.1, "6-100-18" => 94.2, "6-200-18" => 188.4,//湖南 18
- ];
- }
|