config.php 741 B

123456789101112131415161718192021
  1. <?php
  2. namespace refill\yinghuochong;
  3. use mtopcard;
  4. class config
  5. {
  6. //回调地址需在后台配置
  7. const ORDER_URL = 'http://47.96.106.104:9100/recharge/phone/order';
  8. const QUERY_URL = 'http://47.96.106.104:9100/recharge/phone/query';
  9. const BALANCE_URL = 'http://47.96.106.104:9100/customers/balance';
  10. const Account = '15811535608';
  11. const AppSecret = 'Q6AE5AD6A8DB14FF2AC35F5094D98A196Y';
  12. const QYKey = 'qhsvsyvj9rsekyvadlctr1ptx135fb3t';
  13. const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_yinghuochong.php";
  14. const operator = [
  15. mtopcard\ChinaMobileCard => '移动',
  16. mtopcard\ChinaUnicomCard => '联通',
  17. mtopcard\ChinaTelecomCard => '电信'
  18. ];
  19. }