12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- namespace refill\jiuyi;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://47.93.7.11:10050/order/insert';
- const QUERY_URL = 'http://47.93.7.11:10050/order/query';
- const BALANCE_URL = 'http://47.93.7.11:10050/member/account';
- const ACCESS_KEY = 'ACK211394675';
- const ACCESS_SECRET = '4BDF5B9FE377DF4C92F192FD1CAF2C5F';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_jiuyi.php";
- const ExtHeaders = ['Content-Type: application/json; charset=utf-8'];
- const product_code = [
- mtopcard\ChinaMobileCard => [
- 100 => 'SKU100188',
- 200 => 'SKU100189',
- 300 => 'SKU100190',
- 500 => 'SKU100191'
- ],
- mtopcard\ChinaUnicomCard => [
- 50 => 'SKU100177',
- 100 => 'SKU100178',
- 200 => 'SKU100179',
- 300 => 'SKU100180',
- ],
- mtopcard\ChinaTelecomCard => [
- 100 => 'SKU100183',
- 200 => 'SKU100184',
- 300 => 'SKU100185',
- 500 => 'SKU100186'
- ],
- ];
- }
|