12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
- namespace refill\zhenghe;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://api.bjxytxkj.com.cn:1008/hqorder/api/submit';
- const QUERY_URL = 'http://api.bjxytxkj.com.cn:1008/hqorder/api/query';
- const BALANCE_URL = 'http://api.bjxytxkj.com.cn:1008/hqorder/api/balance';
- const MCHID = '200024';
- const KEY = 'b5c5bae0bbf84eb58c3f38b091342059';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_zhenghe.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 => [
- 1 => 2000001,
- 2 => 2000002,
- 3 => 2000003,
- 4 => 2000004,
- 5 => 2000005,
- 6 => 2000006,
- 7 => 2000007,
- 8 => 2000008,
- 9 => 2000009,
- 10 => 2000010,
- 20 => 2000020,
- 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
- ],
- ];
- }
|