config.php 648 B

123456789101112131415161718192021
  1. <?php
  2. namespace refill\shengying;
  3. use mtopcard;
  4. class config
  5. {
  6. const ORDER_URL = 'http://120.77.170.210:8080/telapi.aspx?v=H1.1&action=charge';
  7. const QUERY_URL = 'http://120.77.170.210:8080/telapi.aspx?v=H1.1&action=queryReport';
  8. const GET_PACKAGE_URL = 'http://120.77.170.210:8080/telapi.aspx?v=H1.1&action=getPackage';
  9. const Account = 'LZYZ';
  10. const ApiKey = '47f68456d0de4282ba5c34fda5306c1e';
  11. const NOTIFY_URL = BASE_SITE_URL . "/racc/callback/lingzh/shengying.php";
  12. const operator = [
  13. mtopcard\ChinaMobileCard => 1,
  14. mtopcard\ChinaUnicomCard => 2,
  15. mtopcard\ChinaTelecomCard => 3
  16. ];
  17. }