config.php 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <?php
  2. namespace refill\meixu_fs;
  3. use mtopcard;
  4. class config
  5. {
  6. //https://docs.qq.com/doc/DR2lpVUdGY3JEU25k
  7. const ORDER_URL = 'http://123.57.216.254:9086/onlinepay.do';
  8. const QUERY_URL= 'http://123.57.216.254:9086/searchpay.do';
  9. const BALANCE_URL = 'http://123.57.216.254:9086/searchbalance.do';
  10. const USER_ID= '10003843';
  11. const KEY = 'Gb3j2rjwnDy8ArFZjJjCtsetKGpyCmyR';
  12. const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_meixu_fs.php";
  13. const operator = [
  14. mtopcard\ChinaMobileCard => 'yd',
  15. mtopcard\ChinaUnicomCard => 'lt',
  16. mtopcard\ChinaTelecomCard => 'dx'
  17. ];
  18. const ERR_NOS = [
  19. '5001','5002','5003','5004','5005','5008','5009','5010','5011','5012'
  20. ];
  21. const ProductId = [
  22. mtopcard\ChinaMobileCard => [
  23. //辽宁
  24. 6 => [
  25. 10 => 100041,
  26. 20 => 100042,
  27. 30 => 100043,
  28. 50 => 100044,
  29. 100 => 100045,
  30. 200 => 100046,
  31. 300 => 100047,
  32. 500 => 100048,
  33. ],
  34. //广东
  35. 19 => [
  36. 30 => 100059,
  37. 50 => 100060,
  38. 100 => 100061,
  39. 200 => 100062,
  40. 300 => 100063,
  41. 500 => 100064,
  42. ],
  43. ],
  44. mtopcard\ChinaUnicomCard => [
  45. ],
  46. mtopcard\ChinaTelecomCard => [
  47. //四川
  48. 23 => [
  49. 10 => 30000003570,
  50. 20 => 30000003571,
  51. 30 => 30000003572,
  52. 50 => 30000003573,
  53. 100 => 30000003574,
  54. 200 => 30000003575,
  55. 300 => 30000003576,
  56. 500 => 30000003577,
  57. ],
  58. ],
  59. ];
  60. const Price = [
  61. //移动
  62. "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
  63. "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
  64. //电信
  65. "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
  66. ];
  67. }