1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <?php
- namespace refill\meixu_fs;
- use mtopcard;
- class config
- {
- //https://docs.qq.com/doc/DR2lpVUdGY3JEU25k
- const ORDER_URL = 'http://123.57.216.254:9086/onlinepay.do';
- const QUERY_URL= 'http://123.57.216.254:9086/searchpay.do';
- const BALANCE_URL = 'http://123.57.216.254:9086/searchbalance.do';
- const USER_ID= '10003843';
- const KEY = 'Gb3j2rjwnDy8ArFZjJjCtsetKGpyCmyR';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_meixu_fs.php";
- const operator = [
- mtopcard\ChinaMobileCard => 'yd',
- mtopcard\ChinaUnicomCard => 'lt',
- mtopcard\ChinaTelecomCard => 'dx'
- ];
- const ERR_NOS = [
- '5001','5002','5003','5004','5005','5008','5009','5010','5011','5012'
- ];
- const ProductId = [
- mtopcard\ChinaMobileCard => [
- //辽宁
- 6 => [
- 10 => 100041,
- 20 => 100042,
- 30 => 100043,
- 50 => 100044,
- 100 => 100045,
- 200 => 100046,
- 300 => 100047,
- 500 => 100048,
- ],
- //广东
- 19 => [
- 30 => 100059,
- 50 => 100060,
- 100 => 100061,
- 200 => 100062,
- 300 => 100063,
- 500 => 100064,
- ],
- ],
- mtopcard\ChinaUnicomCard => [
- ],
- mtopcard\ChinaTelecomCard => [
- //四川
- 23 => [
- 10 => 30000003570,
- 20 => 30000003571,
- 30 => 30000003572,
- 50 => 30000003573,
- 100 => 30000003574,
- 200 => 30000003575,
- 300 => 30000003576,
- 500 => 30000003577,
- ],
- ],
- ];
- const Price = [
- //移动
- "4-10-6" => 9.713, "4-20-6" => 19.426, "4-30-6" => 29.139, "4-50-6" => 48.565, "4-100-6" => 97.13, "4-200-6" => 194.26, "4-300-6" => 291.39, "4-500-6" => 485.65,//辽宁 6
- "4-30-19" => 30.009, "4-50-19" => 50.015, "4-100-19" => 100.03, "4-200-19" => 200.06, "4-300-19" => 300.09, "4-500-19" => 500.15,//广东 19
- //电信
- "4-10-23" => 10.21, "4-20-23" => 20.22, "4-30-23" => 30.24, "4-50-23" => 50.15, "4-100-23" => 100.3, "4-200-23" => 200.6, "4-300-23" => 300.9, "4-500-23" => 501.5,//四川 6
- ];
- }
|