123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- <?php
- namespace refill\lihui_fs;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://121.199.22.114:16188/plat/api/hf/submitorder';
- const QUERY_URL= 'http://121.199.22.114:16188/plat/api/queryorder';
- const BALANCE_URL = 'http://121.199.22.114:16188/plat/api/querybalance';
- const USER_ID= '100014';
- const KEY = '02dbb578cbbf4e969b66599148106cd2';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_lihui_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 => [
- //陕西
- 27 => [
- 50 => 1610050,
- 100 => 1610100,
- 200 => 1610200,
- ],
- //福建
- 13 => [
- 50 => 1350050,
- 100 => 1350100,
- 200 => 1350200,
- ],
- //江苏
- 10 => [
- 50 => 1320050,
- 100 => 1320100,
- 200 => 1320200,
- ],
- ],
- mtopcard\ChinaTelecomCard => [
- //广东
- 19 => [
- 50 => 3440050,
- 100 => 3440100,
- 200 => 3440200,
- ],
- //湖南
- 18 => [
- 50 => 3430050,
- 100 => 3430100,
- 200 => 3430200,
- ],
- //天津
- 2 => [
- 50 => 3120050,
- 100 => 3120100,
- 200 => 3120200,
- ],
- //甘肃
- 28 => [
- 50 => 3620050,
- 100 => 3620100,
- 200 => 3620200,
- ],
- //江西
- 14 => [
- 50 => 3360050,
- 100 => 3360100,
- 200 => 3360200,
- ],
- //四川
- 23 => [
- 50 => 3510050,
- 100 => 3510100,
- 200 => 3510200,
- ],
- //福建
- 13 => [
- 50 => 3350050,
- 100 => 3350100,
- 200 => 3350200,
- ],
- //江苏
- 10 => [
- 50 => 3320050,
- 100 => 3320100,
- 200 => 3320200,
- ],
- //青海
- 29 => [
- 50 => 3630050,
- 100 => 3630100,
- 200 => 3630200,
- ],
- //海南
- 21 => [
- 50 => 3460050,
- 100 => 3460100,
- 200 => 3460200,
- ],
- ],
- ];
- //key格式 卡类型-面值-regin_no
- const Price = [
- //移动
- "4-50-27" => 47.5, "4-100-27" => 95, "4-200-27" => 190, //陕西
- "4-50-13" => 47.5, "4-100-13" => 95, "4-200-13" => 190, //福建
- "4-50-10" => 47.5, "4-100-10" => 95, "4-200-10" => 190, //江苏
- //电信
- "6-50-19" => 47.5, "6-100-19" => 95, "6-200-19" => 190, //广东
- "6-50-18" => 47.5, "6-100-18" => 95, "6-200-18" => 190, //湖南
- "6-50-2" => 47.5, "6-100-2" => 95, "6-200-2" => 190, //天津
- "6-50-28" => 47.5, "6-100-28" => 95, "6-200-28" => 190, //甘肃
- "6-50-14" => 47.5, "6-100-14" => 95, "6-200-14" => 190, //江西
- "6-50-23" => 47.5, "6-100-23" => 95, "6-200-23" => 190, //四川
- "6-50-13" => 47.5, "6-100-13" => 95, "6-200-13" => 190, //福建
- "6-50-10" => 47.5, "6-100-10" => 95, "6-200-10" => 190, //江苏
- "6-50-29" => 47.5, "6-100-29" => 95, "6-200-29" => 190, //青海
- "6-50-21" => 47.5, "6-100-21" => 95, "6-200-21" => 190, //海南
- ];
- }
|