config.php 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?php
  2. namespace refill\quanmiao;
  3. use mtopcard;
  4. class config
  5. {
  6. const ORDER_URL = 'http://123.56.253.5:8081/order/insert';
  7. const QUERY_URL = 'http://123.56.253.5:8081/order/query';
  8. const BALANCE_URL = 'http://123.56.253.5:8081/member/account';
  9. const ACCESS_KEY = 'ACK211394676';
  10. const ACCESS_SECRET = 'CB0B0651C9F6EF4FB0B5A80557D383CB';
  11. const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_quanmiao.php";
  12. const ExtHeaders = ['Content-Type: application/json; charset=utf-8'];
  13. const product_code = [
  14. mtopcard\ChinaMobileCard => [
  15. 30 => 'SKU100249',
  16. 50 => 'SKU100250',
  17. 100 => 'SKU100251',
  18. 200 => 'SKU100252',
  19. 300 => 'SKU100253',
  20. 500 => 'SKU100254'
  21. ],
  22. mtopcard\ChinaUnicomCard => [
  23. 50 => 'PLM100177',
  24. 100 => 'PLM100178',
  25. 200 => 'PLM100179',
  26. 300 => 'PLM100180',
  27. 500 => 'PLM100181',
  28. ],
  29. mtopcard\ChinaTelecomCard => [
  30. 30 => 'SKU100255',
  31. 50 => 'SKU100256',
  32. 100 => 'SKU100257',
  33. 200 => 'SKU100258',
  34. 300 => 'SKU100259',
  35. 500 => 'SKU100260'
  36. ],
  37. ];
  38. }