config.php 504 B

1234567891011121314
  1. <?php
  2. namespace refill\jumithird;
  3. class config
  4. {
  5. const ORDER_URL = 'https://sever.jumiit.com/api/mch-api/createOrder';
  6. const QUERY_URL = 'https://sever.jumiit.com/api/mch-api/getOrderInfo';
  7. const BALANCE_URL = 'https://sever.jumiit.com/api/mch-api/getBalance';
  8. const MCH_ID = '210303112631';
  9. const Token = '7e145747925c1619c341ab6d4f6a2e71';
  10. const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_jumithird.php";
  11. const ExtHeaders = ['Content-Type: application/json'];
  12. }