config.php 501 B

1234567891011121314151617181920
  1. <?php
  2. namespace refill\wuchen;
  3. use mtopcard;
  4. class config
  5. {
  6. const ORDER_URL = 'http://47.104.140.24:8080/orders';
  7. const QUERY_URL = 'http://47.104.140.24:8080/orders/fetch_orders';
  8. const APPID = '70016';
  9. const APP_KEY = 'Q4X5OU9U8SSTN5CRWU2U0ANC6VBX3YIJ';
  10. const NOTIFY_URL = BASE_SITE_URL . "/racc/callback/lingzh/wuchen.php";
  11. const operator = [
  12. mtopcard\ChinaMobileCard => 1,
  13. mtopcard\ChinaUnicomCard => 2,
  14. mtopcard\ChinaTelecomCard => 3
  15. ];
  16. }