config.php 698 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace refill\tianyan;
  3. use mtopcard;
  4. class config
  5. {
  6. //945
  7. const ORDER_URL = 'http://gateway.slypay.org:30900/prod-produce/api/provide';
  8. const QUERY_URL= 'http://gateway.slypay.org:30900/prod-produce/api/query';
  9. const BALANCE_URL= 'http://gateway.slypay.org:30900/prod-produce/api/querySupAmount';
  10. const MCH_ID= '48';
  11. const KEY = '3fc7d3ddcf0170baea4e95972887e91a';
  12. const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_tianyan.php";
  13. const operator = [
  14. mtopcard\ChinaMobileCard => 'yd',
  15. mtopcard\ChinaUnicomCard => 'lt',
  16. mtopcard\ChinaTelecomCard => 'dx'
  17. ];
  18. const ExtHeaders = ['Content-Type: application/json'];
  19. }