config.php 530 B

12345678910111213141516171819
  1. <?php
  2. namespace refill\yunlingfs;
  3. use mtopcard;
  4. class config
  5. {
  6. const ORDER_URL = 'http://39.101.180.197:8177/soft/onlinepay.do';
  7. const QUERY_URL= 'http://39.101.180.197:8177/soft/searchpay.do';
  8. const USER_ID= '10073527';
  9. const KEY = 'BA804D1914CFCDD19AB86EED110E0EF4';
  10. const NOTIFY_URL = BASE_SITE_URL . "/mobile/refill_yunlingfs.php";
  11. const operator = [
  12. mtopcard\ChinaMobileCard => '移动',
  13. mtopcard\ChinaUnicomCard => '联通',
  14. mtopcard\ChinaTelecomCard => '电信'
  15. ];
  16. }