config.php 850 B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace refill\xunyuan;
  3. use mtopcard;
  4. class config
  5. {
  6. #公司名称:山东讯源信息技术有限公司
  7. const ORDER_URL = 'http://121.43.140.47:10186/plat/api/old/submitorder';
  8. const QUERY_URL= 'http://121.43.140.47:10186/plat/api/old/queryorder';
  9. const BALANCE_URL = 'http://121.43.140.47:10186/plat/api/old/queryBalance';
  10. const USER_ID= '200128';
  11. const KEY = 'd8749bec92cf4aeb8dc8492f6647d628';
  12. const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_xunyuan.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. }