config.php 524 B

12345678910111213141516171819
  1. <?php
  2. namespace refill\yunlingfs;
  3. use mtopcard;
  4. class config
  5. {
  6. const ORDER_URL = 'http://121.89.243.74:9086/onlinepay.do';
  7. const QUERY_URL = 'http://121.89.243.74:9086/searchpay.do';
  8. const USER_ID = '10002543';
  9. const KEY = 'c3SRnHJ7Bcj544MsdxY2mesADs33QGtz';
  10. const NOTIFY_URL = BASE_SITE_URL . "/mobile/refill_yunlingfs.php";
  11. const operator = [
  12. mtopcard\ChinaMobileCard => 'yd',
  13. mtopcard\ChinaUnicomCard => 'lt',
  14. mtopcard\ChinaTelecomCard => 'dx'
  15. ];
  16. }