1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?php
- namespace refill\wanxin;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://47.98.232.225/flow-receiver/api/recharge/feecbk';
- const QUERY_URL = 'http://47.98.232.225/flow-receiver/api/query/feecbk';
- const BALANCE_URL = 'http://47.98.232.225/flow-receiver/api/balance/feecbk';
- const NOTIFY_URL = BASE_SITE_URL . '/mobile/callback/refill_wanxin.php';
- const ACCOUNT = 'wxgyqg';
- const KEY = '1d22c23169c54a998262bd797bbe3c84';
- const operator = [
- mtopcard\ChinaMobileCard => 'CMCC',
- mtopcard\ChinaUnicomCard => 'CUCC',
- mtopcard\ChinaTelecomCard => 'CTCC'
- ];
- const ProductIDS = [
- mtopcard\ChinaMobileCard => [
- 100 => 'CMCCALLr100r',
- 200 => 'CMCCALLr200r',
- 300 => 'CMCCALLr300r',
- 500 => 'CMCCALLr500r'
- ],
- mtopcard\ChinaUnicomCard => [
- 30 => 'CUCCALLr30r',
- 50 => 'CUCCALLr50r',
- 100 => 'CUCCALLr100r',
- 200 => 'CUCCALLr200r',
- 300 => 'CUCCALLr300r',
- 500 => 'CUCCALLr500r'
- ],
- mtopcard\ChinaTelecomCard => [
- 30 => 'CTCCALLr30r',
- 50 => 'CTCCALLr50r',
- 100 => 'CTCCALLr100r',
- 200 => 'CTCCALLr200r',
- 300 => 'CTCCALLr300r',
- 500 => 'CTCCALLr500r'
- ],
- ];
- const NotifyErrCodes = [
- '003','004','005','006','007','008','015','016','017','018','019','020','021','022','023','025','027','028','098','099'
- ];
- const QueryErrCodes = [
- '003','004','005','006','007','008','015','016','017','018','019','020','021','022','023','024','025','026','027','028','098','099'
- ];
- }
|