config.php 614 B

12345678910111213141516171819
  1. <?php
  2. namespace refill\pushang;
  3. use mtopcard;
  4. class config
  5. {
  6. const ORDER_URL = 'http://123.60.45.58:8080/api/huafei/makeOrder';
  7. const QUERY_URL = 'http://123.60.45.58:8080/api/queryOrder';
  8. const BALANCE_URL = 'http://123.60.45.58:8080/api/queryBalance';
  9. const MCH_ID = 'M00050';
  10. const KEY = 'mg035JzCXuno967P54TbEbyC15kCtPwA';
  11. const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_pushang.php";
  12. const operator = [
  13. mtopcard\ChinaMobileCard => '移动',
  14. mtopcard\ChinaUnicomCard => '联通',
  15. mtopcard\ChinaTelecomCard => '电信'
  16. ];
  17. }