123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- <?php
- namespace refill\youhe_fs;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://118.31.168.250:10186/plat/api/old/submitorder';
- const QUERY_URL= 'http://118.31.168.250:10186/plat/api/old/queryorder';
- const BALANCE_URL = 'http://118.31.168.250:10186/plat/api/old/queryBalance';
- const USER_ID= '200064';
- const KEY = 'c4eace522e51459eb52ad030826bb2c7';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_youhe_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 => [
- 30 => 1320030,
- 50 => 1320050,
- 100 => 1320100,
- 200 => 1320200,
- ],
- //福建
- 13 => [
- 30 => 1350030,
- 50 => 1350050,
- 100 => 1350100,
- 200 => 1350200,
- ],
- //贵州
- 24 => [
- 30 => 1520030,
- 50 => 1520050,
- 100 => 1520100,
- 200 => 1520200,
- ],
- //河南
- 16 => [
- 30 => 1410030,
- 50 => 1410050,
- 100 => 1410100,
- 200 => 1410200,
- ],
- //云南
- 25 => [
- 30 => 1530030,
- 50 => 1530050,
- 100 => 1530100,
- 200 => 1530200,
- ],
- //广西
- 20 => [
- 30 => 1450030,
- 50 => 1450050,
- 100 => 1450100,
- 200 => 1450200,
- ],
- //湖北
- 17 => [
- 50 => 1420050,
- 100 => 1420100,
- 200 => 1420200,
- ],
- ],
- mtopcard\ChinaTelecomCard => [
- //山东
- 15 => [
- 30 => 3370030,
- 50 => 3370050,
- 100 => 3370100,
- 200 => 3370200,
- ],
- //四川
- 23 => [
- 30 => 3510030,
- 50 => 3510050,
- 100 => 3510100,
- 200 => 3510200,
- ],
- //云南
- 25 => [
- 30 => 3530030,
- 50 => 3530050,
- 100 => 3530100,
- 200 => 3530200,
- ],
- //湖南
- 18 => [
- 30 => 3430030,
- 50 => 3430050,
- 100 => 3430100,
- 200 => 3430200,
- ],
- //福建
- 13 => [
- 30 => 3350030,
- 50 => 3350050,
- 100 => 3350100,
- 200 => 3350200,
- ],
- ],
- ];
- //key格式 卡类型-面值-regin_no
- const Price = [
- //移动
- "4-30-10" => 28.05, "4-50-10" => 47.25, "4-100-10" => 94.5, "4-200-10" => 189,//江苏 10
- "4-30-24" => 28.05, "4-50-24" => 47.25, "4-100-24" => 94.5, "4-200-24" => 189,//贵州 24
- "4-30-13" => 28.05, "4-50-13" => 47.25, "4-100-13" => 94.5, "4-200-13" => 189,//福建 13
- "4-30-16" => 28.05, "4-50-16" => 47.25, "4-100-16" => 94.5, "4-200-16" => 189,//河南 16
- "4-30-25" => 28.05, "4-50-25" => 47.25, "4-100-25" => 94.5, "4-200-25" => 189,//云南 25
- "4-30-20" => 28.05, "4-50-20" => 47.25, "4-100-20" => 94.5, "4-200-20" => 189,//广西 20
- "4-50-17" => 47.25, "4-100-17" => 94.5, "4-200-17" => 189,//湖北 17
- //电信
- "6-30-15" => 28.05, "6-50-15" => 48, "6-100-15" => 96, "6-200-15" => 192,//山东 15
- "6-30-23" => 28.35, "6-50-23" => 47.25, "6-100-23" => 94.5, "6-200-23" => 189,//四川 23
- "6-30-25" => 28.05, "6-50-25" => 48, "6-100-25" => 96, "6-200-25" => 192,//云南 25
- "6-30-18" => 28.35, "6-50-18" => 47.25, "6-100-18" => 94.5, "6-200-18" => 189,//湖南 18
- "6-30-13" => 28.35, "6-50-13" => 47.25, "6-100-13" => 94.5, "6-200-13" => 189,//福建 13
- ];
- }
|