config.php 657 B

1234567891011121314151617181920
  1. <?php
  2. namespace refill\yiqian;
  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 = 'M00221';
  11. const KEY = '0xHGoi3X6d78ZGfeai0UmgtTjghoqowg';
  12. const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_yiqian.php";
  13. const operator = [
  14. mtopcard\ChinaMobileCard => '移动',
  15. mtopcard\ChinaUnicomCard => '联通',
  16. mtopcard\ChinaTelecomCard => '电信'
  17. ];
  18. }