1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php
- namespace refill\zhenghe_sec;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://api.bjzhengheshun.com.cn:1008/hqorder/api/submit';
- const QUERY_URL = 'http://api.bjzhengheshun.com.cn:1008/hqorder/api/query';
- const BALANCE_URL = 'http://api.bjzhengheshun.com.cn:1008/hqorder/api/balance';
- const MCHID = '200003';
- const KEY = 'b2b737a0262548698229bc67674ecb48';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_zhenghe_sec.php";
- const ExtHeaders = ['Content-Type: application/json'];
- const product_id = [
- mtopcard\ChinaMobileCard => [
- 30 => 1000030,
- 50 => 1000050,
- 100 => 1000100,
- 200 => 1000200,
- 300 => 1000300,
- 500 => 1000500
- ],
- mtopcard\ChinaUnicomCard => [
- 30 => 2000030,
- 50 => 2000050,
- 100 => 2000100,
- 200 => 2000200,
- 300 => 2000300,
- 500 => 2000500
- ],
- mtopcard\ChinaTelecomCard => [
- 30 => 3000030,
- 50 => 3000050,
- 100 => 3000100,
- 200 => 3000200,
- 300 => 3000300,
- 500 => 3000500
- ],
- ];
- }
|