config.php 518 B

123456789101112131415161718
  1. <?php
  2. namespace refill\youhe;
  3. class config
  4. {
  5. //回调地址需在商户后台配置
  6. const ORDER_URL = 'http://106.14.252.179:8081/api/charge/v2';
  7. const QUERY_URL = 'http://106.14.252.179:8081/api/order/query';
  8. const BALANCE_URL = 'http://106.14.252.179:8081/api/order/balance';
  9. const PARTNER_NO = 'yezi';
  10. const KEY = '65fe2a4a16f14c5799a8247d59e68ced';
  11. const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_youhe.php";
  12. const ExtHeaders = ['Content-Type: application/json'];
  13. }