config.php 676 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace refill\yikatong;
  3. use mtopcard;
  4. class config
  5. {
  6. const ORDER_URL = 'http://47.104.76.103:8080/fee/api/charge.do';
  7. const QUERY_URL = 'http://47.104.76.103:8080/fee/api/query_state.do';
  8. const BALANCE_URL = 'http://47.104.76.103:8080/fee/api/query_balance.do';
  9. const USER_ID = '04f46671c696436aa30d';
  10. const KEY = '29defd3a5a634b6a9988';
  11. const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_yikatong.php";
  12. const ExtHeaders = ['Content-Type: application/json'];
  13. const ChannelCode = [
  14. mtopcard\ChinaMobileCard => 'cmcc',
  15. mtopcard\ChinaUnicomCard => 'cucc',
  16. mtopcard\ChinaTelecomCard => 'ctcc'
  17. ];
  18. }