config.php 587 B

123456789101112131415161718192021
  1. <?php
  2. namespace refill\fengye;
  3. use mtopcard;
  4. class config
  5. {
  6. const ORDER_URL = 'http://47.118.36.120:9009/prod-produce/api/provide';
  7. const QUERY_URL = 'http://47.118.36.120:9009/prod-produce/api/query';
  8. const USER_ID = '13';
  9. const KEY = '2579695a64e30345e23fdb53aebb7b6c';
  10. const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_fengye.php";
  11. const ExtHeaders = ['Content-Type: application/json'];
  12. const operator = [
  13. mtopcard\ChinaMobileCard => 'yd',
  14. mtopcard\ChinaUnicomCard => 'lt',
  15. mtopcard\ChinaTelecomCard => 'dx'
  16. ];
  17. }