123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?php
- namespace refill\quanmiao;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://123.56.253.5:8081/order/insert';
- const QUERY_URL = 'http://123.56.253.5:8081/order/query';
- const BALANCE_URL = 'http://123.56.253.5:8081/member/account';
- const ACCESS_KEY = 'ACK211394676';
- const ACCESS_SECRET = 'CB0B0651C9F6EF4FB0B5A80557D383CB';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_quanmiao.php";
- const ExtHeaders = ['Content-Type: application/json; charset=utf-8'];
- const product_code = [
- mtopcard\ChinaMobileCard => [
- 30 => 'SKU100249',
- 50 => 'SKU100250',
- 100 => 'SKU100251',
- 200 => 'SKU100252',
- 300 => 'SKU100253',
- 500 => 'SKU100254'
- ],
- mtopcard\ChinaUnicomCard => [
- 50 => 'PLM100177',
- 100 => 'PLM100178',
- 200 => 'PLM100179',
- 300 => 'PLM100180',
- 500 => 'PLM100181',
- ],
- mtopcard\ChinaTelecomCard => [
- 30 => 'SKU100255',
- 50 => 'SKU100256',
- 100 => 'SKU100257',
- 200 => 'SKU100258',
- 300 => 'SKU100259',
- 500 => 'SKU100260'
- ],
- ];
- }
|