config.php 785 B

12345678910111213141516171819202122232425
  1. <?php
  2. namespace refill\fuyuan;
  3. use mtopcard;
  4. class config
  5. {
  6. //回调地址需上游配置
  7. const ORDER_URL = 'http://api.miaochongwang.com:8003/dopay.aspx';
  8. const QUERY_URL= 'http://api.miaochongwang.com:8003/orderquery.aspx';
  9. const BALANCE_URL = 'http://api.miaochongwang.com:8003/balance.aspx';
  10. const AGENT_ID = '100354';
  11. const KEY = 'FTxjJs88iD81C6vY6kRvD7CAjP9B0s5r';
  12. const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_fuyuan.php";
  13. const operator = [
  14. mtopcard\ChinaMobileCard => '移动',
  15. mtopcard\ChinaUnicomCard => '联通',
  16. mtopcard\ChinaTelecomCard => '电信'
  17. ];
  18. const ERR_NOS = [
  19. '1001','1002','1003','1005','1006','1007','1008','1009','1010','1011','1012'
  20. ];
  21. }