1234567891011121314151617181920212223242526272829 |
- <?php
- namespace refill\yuanmai;
- use mtopcard;
- class config
- {
- //985 2
- const ORDER_URL = 'https://esales.iyuanmai.com:28001/charge/recharge.do';
- const QUERY_URL = 'https://esales.iyuanmai.com:28001/charge/mobileOrderQuery.do';
- const BALANCE_URL = 'https://esales.iyuanmai.com:28001/user/balanceQuery.do';
- const USER_ID = '202106261336161975';
- const KEY = 'a6f5b39a9ff14fc599a325b98dfc5308dd0dbf1829b044e18d1ea95ecf2f7ec46475be4ccf3e4855b8d9456766659f7b193293e8d67543cb824c523f34e16321';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_yuanmai.php";
- // 测试环境
- // const ORDER_URL = 'http://223.93.131.115:18080/charge/recharge.do';
- // const QUERY_URL= 'http://223.93.131.115:18080/charge/mobileOrderQuery.do';
- // const USER_ID= '201511251649031105';
- // const KEY = '500f307b84844cb9b05e04d7baef545126179a88f89d4b44bfbdbfbf99eedd75ef82e5b5412d42f9981d4921e6b0537f78201357200d412797e4582d79bc8215';
- // const NOTIFY_URL = "https://www.xyzshops.cn/mobile/signature.php";
- const operator = [
- mtopcard\ChinaMobileCard => 1,
- mtopcard\ChinaUnicomCard => 0,
- mtopcard\ChinaTelecomCard => 2
- ];
- }
|