config.php 630 B

1234567891011121314151617181920
  1. <?php
  2. namespace refill\moxj_new;
  3. use mtopcard;
  4. class config
  5. {
  6. const ORDER_URL = 'http://118.31.228.170/pushQuickOrder';
  7. const QUERY_URL = 'http://118.31.228.170/pushOrderQuery';
  8. const BALANCE_URL = 'http://118.31.228.170/balance';
  9. const MCH_ID = '300459017';
  10. const KEY = 'pWQxKXdOiKOMmZhsCOgiygmleBmHBpZx';
  11. const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_moxj_new.php";
  12. const operator = [
  13. mtopcard\ChinaMobileCard => 'cmcc',
  14. mtopcard\ChinaUnicomCard => 'cucc',
  15. mtopcard\ChinaTelecomCard => 'ctcc'
  16. ];
  17. const ExtHeaders = ['Content-Type: application/json'];
  18. }