config.php 595 B

1234567891011121314151617181920
  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 BALANCE_URL = 'http://121.89.243.74:9086/searchbalance.do';
  9. const USER_ID = '10002543';
  10. const KEY = 'c3SRnHJ7Bcj544MsdxY2mesADs33QGtz';
  11. const NOTIFY_URL = BASE_SITE_URL . "/mobile/refill_yunlingfs.php";
  12. const operator = [
  13. mtopcard\ChinaMobileCard => 'yd',
  14. mtopcard\ChinaUnicomCard => 'lt',
  15. mtopcard\ChinaTelecomCard => 'dx'
  16. ];
  17. }