config.php 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <?php
  2. namespace refill\feimingyunew;
  3. use mtopcard;
  4. class config
  5. {
  6. //https://www.showdoc.com.cn/AQL666666/
  7. const ORDER_URL = 'http://121.36.242.90:9086/onlinepay.do';
  8. const QUERY_URL= 'http://121.36.242.90:9086/searchpay.do';
  9. const BALANCE_URL = 'http://121.36.242.90:9086/searchbalance.do';
  10. const USER_ID= '10002506';
  11. const KEY = 'TeWNFZkXKsDa7TQd6BhieizYGizPWAEZ';
  12. const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_feimingyunew.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 ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;'];
  22. const ProductIdS = [
  23. mtopcard\ChinaMobileCard =>
  24. [
  25. 30 => '101687',
  26. 50 => '101688',
  27. 100 => '101689',
  28. 200 => '101690',
  29. 300 => '101691',
  30. 500 => '101692',
  31. ],
  32. mtopcard\ChinaUnicomCard =>
  33. [
  34. 30 => '101705',
  35. 50 => '101706',
  36. 100 => '101707',
  37. 200 => '101708',
  38. 300 => '101709',
  39. 500 => '101710',
  40. ],
  41. mtopcard\ChinaTelecomCard =>
  42. [
  43. 30 => '101723',
  44. 50 => '101724',
  45. 100 => '101725',
  46. 200 => '101726',
  47. 300 => '101727',
  48. 500 => '101728',
  49. ]
  50. ];
  51. }