1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- namespace refill\masheng;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://api.mashengquanyi.com/api/addOrder';
- const QUERY_URL= 'http://api.mashengquanyi.com/api/payment/order';
- const BALANCE_URL = 'http://api.mashengquanyi.com/api/payment/query/bank';
- const USER_ID= '4637888';
- const KEY = 'K0DYDKRH05KYBWI4846Z9VRR';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_masheng.php";
- const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;'];
- const ProductIdS = [
- mtopcard\ChinaMobileCard =>
- [
- 100 => '100YDJS',
- 200 => '200YDJS',
- 300 => '300YDJS',
- 500 => '500YDJS',
- ],
- mtopcard\ChinaUnicomCard =>
- [
- ],
- mtopcard\ChinaTelecomCard =>
- [
- 30 => '30DXJS',
- 50 => '50DXJS',
- 100 => '100DXJS',
- 200 => '200DXJS',
- 300 => '300DXJS',
- 500 => '500DXJS',
- ]
- ];
- }
|