12345678910111213141516171819202122 |
- <?php
- namespace refill\xinhengyangnew;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://121.43.140.47:10186/plat/api/px/submit';
- const QUERY_URL = 'http://121.43.140.47:10186/plat/api/px/query';
- const BALANCE_URL = 'http://121.43.140.47:10186/plat/api/px/balance';
- const MCHID = '200050';
- const KEY = '7d1229a832a84d89824c01d201030331';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_xinhengyangnew.php";
- const operator = [
- mtopcard\ChinaMobileCard => 1,
- mtopcard\ChinaUnicomCard => 2,
- mtopcard\ChinaTelecomCard => 3
- ];
- const ExtHeaders = ['Content-Type: application/json'];
- }
|