config.php 661 B

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