config.php 791 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace refill\wangliantx;
  3. use mtopcard;
  4. class config
  5. {
  6. const ORDER_URL = 'http://39.99.143.124:8177/soft/onlinepay.do';
  7. const QUERY_URL= 'http://39.99.143.124:8177/soft/searchpay.do';
  8. const BALANCE_UTL = 'http://39.99.143.124:8177/soft/searchbalance.do';
  9. const USER_ID= '10073664';
  10. const KEY = 'ADE28CAF69A0FFE7E5E3C5FD5EBCA7F9';
  11. const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_wangliantx.php";
  12. const operator = [
  13. mtopcard\ChinaMobileCard => '移动',
  14. mtopcard\ChinaUnicomCard => '联通',
  15. mtopcard\ChinaTelecomCard => '电信'
  16. ];
  17. const ERR_NOS = [
  18. '9','1001','5001','5002','5003','5004','5005','5006','5007','5008','5009','5010','5011','5012','5013','5014','5015'
  19. ];
  20. }