config.php 522 B

123456789101112131415161718192021
  1. <?php
  2. namespace refill\wailing;
  3. use mtopcard;
  4. class config
  5. {
  6. const ORDER_URL = 'http://206.119.82.136/api/telpay';
  7. const QUERY_URL = 'http://206.119.82.136/api/telpay/query';
  8. const MCHID = 10045;
  9. const KEY = 'a1b2f886cfda41170547cd6cfc1cf16b';
  10. const NOTIFY_URL = BASE_SITE_URL . "/racc/callback/lingzh/wailing.php";
  11. const NotifyTimeout = 7200;
  12. const operator = [
  13. mtopcard\ChinaMobileCard => 0,
  14. mtopcard\ChinaUnicomCard => 1,
  15. mtopcard\ChinaTelecomCard => 2
  16. ];
  17. }