config.php 726 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace refill\dingxin;
  3. use mtopcard;
  4. class config
  5. {
  6. //回调地址需配置
  7. const ORDER_URL = 'http://api.ejiaofei.net:11140/chongzhi_jkorders.do';
  8. const QUERY_URL= 'http://api.ejiaofei.net:11140/query_jkorders.do';
  9. const BALANCE_URL = 'http://api.ejiaofei.net:11140/money_jkuser.do';
  10. const USER_ID= '18513846008';
  11. const PWD = 'ZyhaHyQspd68ndfbRfJH8errzaBmdMFm';
  12. const KEY = 'HPwK74Y4dhNRtktmQDZa7xj2twNTMkfx';
  13. const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_dingxin.php";
  14. const operator = [
  15. mtopcard\ChinaMobileCard => 'mobile',
  16. mtopcard\ChinaUnicomCard => 'unicom',
  17. mtopcard\ChinaTelecomCard => 'telecom'
  18. ];
  19. }