1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php
- namespace refill\qianqian_fs_gd;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://116.62.12.248/flow-receiver/api/recharge/feecbk';
- const QUERY_URL = 'http://116.62.12.248/flow-receiver/api/query/feecbk';
- const BALANCE_URL = 'http://116.62.12.248/flow-receiver/api/balance/feecbk';
- const NOTIFY_URL = BASE_SITE_URL . '/mobile/callback/refill_qianqian_fs_gd.php';
- const ACCOUNT = 'wlyezhigdfs';
- const KEY = '97bb99311f814e779923644cc2be5a8c';
- const operator = [
- mtopcard\ChinaMobileCard => 'CMCC',
- mtopcard\ChinaUnicomCard => 'CUCC',
- mtopcard\ChinaTelecomCard => 'CTCC'
- ];
- const ProductIDS = [
- mtopcard\ChinaMobileCard => [
- //广东
- 19 => [
- 50 => 'CMCCGDr50r',
- 100 => 'CMCCGDr100r',
- 200 => 'CMCCGDr200r'
- ],
- ]
- ];
- 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'
- ];
- const Price = [
- // 移动
- "4-50-19" => 48, "4-100-19" => 96, "4-200-19" => 192,//广东 19
- ];
- }
|