12345678910111213141516171819202122232425262728293031 |
- <?php
- namespace refill\hangtong;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://47.109.31.191/flow-receiver/api/v2/recharge';
- const QUERY_URL = 'http://47.109.31.191/flow-receiver/api/v2/query/single';
- const BALANCE_URL = 'http://47.109.31.191/flow-receiver/api/v2/balance/query';
- const NOTIFY_URL = BASE_SITE_URL . '/mobile/callback/refill_hangtong.php';
- const ACCOUNT = 'yezi';
- const KEY = '9074ca3652384ab2a9c7278842ec1147';
- const operator = [
- mtopcard\ChinaMobileCard => 'CMCC',
- mtopcard\ChinaUnicomCard => 'CUCC',
- mtopcard\ChinaTelecomCard => 'CTCC'
- ];
- const ProductIDS = [
- mtopcard\ChinaMobileCard => [
- 30 => 'CMCCALLr30r', 50 => 'CMCCALLr50r', 100 => 'CMCCALLr100r', 200 => 'CMCCALLr200r'
- ],
- mtopcard\ChinaUnicomCard => [
- 30 => 'CUCCALLr30r', 50 => 'CUCCALLr50r', 100 => 'CUCCALLr100r', 200 => 'CUCCALLr200r'
- ],
- mtopcard\ChinaTelecomCard => [
- 30 => 'CTCCALLr30r', 50 => 'CTCCALLr50r', 100 => 'CTCCALLr100r', 200 => 'CTCCALLr200r'
- ]
- ];
- }
|