1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- namespace refill\qianqian;
- use mtopcard;
- class config
- {
- //回调地址需配置
- const ORDER_URL = 'http://116.62.12.248/flow-receiver/fee/recharge';
- const QUERY_URL = 'http://116.62.12.248/flow-receiver/fee/query/single';
- const BALANCE_URL = 'http://116.62.12.248/flow-receiver/fee/balance/query';
- const NOTIFY_URL = BASE_SITE_URL . '/mobile/callback/qianqian.php';
- const ACCOUNT = 'wlyzqg';
- const KEY = '2ffda88fe07143e0953d11e2eecfc499';
- const ProductIDS = [
- mtopcard\ChinaMobileCard => [
- 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'
- ]
- ];
- 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'
- ];
- }
|