1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?php
- namespace refill\dashang;
- use mtopcard;
- class config
- {
- //回调地址需配置
- const ORDER_URL = 'http://47.114.209.57/unicomAync/buy.do';
- const QUERY_URL= 'http://47.114.209.57/unicomAync/queryBizOrder.do';
- const BALANCE_URL = 'http://47.114.209.57/unicomAync/queryBalance.do';
- const USER_ID= '80800346';
- const KEY = 'bb9c64bbd8937e03ca73f9d7b29a17af';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_dashang.php";
- const Products = [
- mtopcard\ChinaMobileCard =>
- [
- 10 => 90440010,
- 20 => 90440020,
- 30 => 90440030,
- 50 => 90440050,
- 100 => 90440100,
- 200 => 90440200,
- 300 => 90440300,
- 500 => 90440500
- ],
- mtopcard\ChinaUnicomCard =>
- [
- 10 => 90460010,
- 20 => 90460020,
- 30 => 90460030,
- 50 => 90460050,
- 100 => 90460100,
- 200 => 90460200,
- 300 => 90460300,
- 500 => 90460500
- ],
- mtopcard\ChinaTelecomCard =>
- [
- 10 => 90290010,
- 20 => 90290020,
- 30 => 90290030,
- 50 => 90290050,
- 100 => 90290100,
- 200 => 90290200,
- 300 => 90290300,
- 500 => 90290500
- ]
- ];
- }
|