123456789101112131415161718192021222324252627282930 |
- <?php
- namespace refill\xingzy_normal;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://39.103.236.218:8081/order/insert';
- const QUERY_URL = 'http://39.103.236.218:8071/order/query';
- const BALANCE_URL = 'http://39.103.236.218:8071/member/account';
- const ACCESS_KEY = '211394711';
- const ACCESS_SECRET = 'KqatYI5nIESBhW22my0TNg==';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_xingzy_normal.php";
- const ExtHeaders = ['Content-Type: application/json; charset=utf-8'];
- const product_code = [
- mtopcard\ChinaUnicomCard => [
- 30 => 'SKU100081',
- 50 => 'SKU100082',
- 100 => 'SKU100083',
- 200 => 'SKU100084'
- ],
- mtopcard\ChinaTelecomCard => [
- 30 => 'SKU100073',
- 50 => 'SKU100074',
- 100 => 'SKU100075',
- 200 => 'SKU100076'
- ],
- ];
- }
|