config.php 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. namespace refill\qianqian_fs_gd;
  3. use mtopcard;
  4. class config
  5. {
  6. const ORDER_URL = 'http://116.62.12.248/flow-receiver/api/recharge/feecbk';
  7. const QUERY_URL = 'http://116.62.12.248/flow-receiver/api/query/feecbk';
  8. const BALANCE_URL = 'http://116.62.12.248/flow-receiver/api/balance/feecbk';
  9. const NOTIFY_URL = BASE_SITE_URL . '/mobile/callback/refill_qianqian_fs_gd.php';
  10. const ACCOUNT = 'wlyezhigdfs';
  11. const KEY = '97bb99311f814e779923644cc2be5a8c';
  12. const operator = [
  13. mtopcard\ChinaMobileCard => 'CMCC',
  14. mtopcard\ChinaUnicomCard => 'CUCC',
  15. mtopcard\ChinaTelecomCard => 'CTCC'
  16. ];
  17. const ProductIDS = [
  18. mtopcard\ChinaMobileCard => [
  19. //广东
  20. 19 => [
  21. 50 => 'CMCCGDr50r',
  22. 100 => 'CMCCGDr100r',
  23. 200 => 'CMCCGDr200r'
  24. ],
  25. ]
  26. ];
  27. const NotifyErrCodes = [
  28. '003','004','005','006','007','008','015','016','017','018','019','020','021','022','023','025','027','028','098','099'
  29. ];
  30. const QueryErrCodes = [
  31. '003','004','005','006','007','008','015','016','017','018','019','020','021','022','023','024','025','026','027','028','098','099'
  32. ];
  33. const Price = [
  34. // 移动
  35. "4-50-19" => 48, "4-100-19" => 96, "4-200-19" => 192,//广东 19
  36. ];
  37. }