config.php 826 B

123456789101112131415161718192021222324252627
  1. <?php
  2. namespace refill\xinruiheng_fs;
  3. use mtopcard;
  4. class config
  5. {
  6. //http://www.firstsup.net/showdoc
  7. const ORDER_URL = 'http://121.37.166.253:9086/onlinepay.do';
  8. const QUERY_URL= 'http://121.37.166.253:9086/searchpay.do';
  9. const BALANCE_URL = 'http://121.37.166.253:9086/searchbalance.do';
  10. const USER_ID= '10002764';
  11. const KEY = '2D3mXKwDdWkM5EKiwQTQ5ZehB7GkZE2J';
  12. const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_xinruiheng_fs.php";
  13. const operator = [
  14. mtopcard\ChinaMobileCard => 'yd',
  15. mtopcard\ChinaUnicomCard => 'lt',
  16. mtopcard\ChinaTelecomCard => 'dx'
  17. ];
  18. const ERR_NOS = [
  19. '5001','5002','5003','5004','5005','5008','5009','5010','5011','5012','7001'
  20. ];
  21. const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;'];
  22. }