config.php 813 B

123456789101112131415161718192021222324252627
  1. <?php
  2. namespace refill\zhongst_mix;
  3. use mtopcard;
  4. class config
  5. {
  6. //995
  7. const ORDER_URL = 'http://39.102.121.210:10186/plat/api/old/submitorder';
  8. const QUERY_URL= 'http://39.102.121.210:10186/plat/api/old/queryorder';
  9. const BALANCE_URL= 'http://39.102.121.210:10186/plat/api/old/queryBalance';
  10. const USER_ID= '200053';
  11. const KEY = '3a7d472a266b47a7a929469e46749aa7';
  12. const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_zhongst_mix.php";
  13. const operator = [
  14. mtopcard\ChinaMobileCard => 1,
  15. mtopcard\ChinaUnicomCard => 2,
  16. mtopcard\ChinaTelecomCard => 3
  17. ];
  18. const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;charset=utf-8'];
  19. const ERR_NOS = [
  20. 1000,1001,1003,1004,2001,2002,2003,2020,2021,1006,2030,3003
  21. ];
  22. }