config.php 690 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace refill\jinxin;
  3. use mtopcard;
  4. class config
  5. {
  6. //回调地址需在上游配置
  7. const ORDER_URL = 'http://39.106.26.90:8125/api/external/submitOrder';
  8. const QUERY_URL= 'http://39.106.26.90:8125/api/external/queryOrder';
  9. const BALANCE_URL= 'http://39.106.26.90:8125/api/external/queryBalance';
  10. const USER_ID= '137';
  11. const KEY = 'LRygb652kqpt2JoEe5KohdaWLf2YmPdn';
  12. const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_jinxin.php";
  13. const operator = [
  14. mtopcard\ChinaMobileCard => 1,
  15. mtopcard\ChinaUnicomCard => 2,
  16. mtopcard\ChinaTelecomCard => 3
  17. ];
  18. const ExtHeaders = ['Content-Type: application/json'];
  19. }