config.php 680 B

12345678910111213141516171819202122
  1. <?php
  2. namespace refill\xinhengyangnew;
  3. use mtopcard;
  4. class config
  5. {
  6. const ORDER_URL = 'http://121.43.140.47:10186/plat/api/px/submit';
  7. const QUERY_URL = 'http://121.43.140.47:10186/plat/api/px/query';
  8. const BALANCE_URL = 'http://121.43.140.47:10186/plat/api/px/balance';
  9. const MCHID = '200050';
  10. const KEY = '7d1229a832a84d89824c01d201030331';
  11. const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_xinhengyangnew.php";
  12. const operator = [
  13. mtopcard\ChinaMobileCard => 1,
  14. mtopcard\ChinaUnicomCard => 2,
  15. mtopcard\ChinaTelecomCard => 3
  16. ];
  17. const ExtHeaders = ['Content-Type: application/json'];
  18. }