12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- namespace refill\lexiang;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://create-sd.mallka.cc/create';
- const QUERY_URL = 'http://query-sd.mallka.cc/queryOrder';
- const BALANCE_URL = 'http://query-sd.mallka.cc/queryBalance';
- const MCH_ID = '20';
- const KEY = 'fd870cf049bc7611af779bfd331d5e80';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_lexiang.php";
- const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;charset=utf-8'];
- const PRODUCT = [
- mtopcard\ChinaMobileCard => [
- 30 => '68e191b2e1c1',
- 50 => 'e75a29cc57ca',
- 100 => '8fc0798e4517',
- 200 => '5d03557190e9',
- 300 => '3f648ebfd86c',
- 500 => '61d7021be485'
- ],
- mtopcard\ChinaUnicomCard => [
- 30 => '394fff5fbae9',
- 50 => 'c80efca1e1cc',
- 100 => '0f813d2d35b7',
- 200 => '1a5fc013c6f7',
- 300 => '2d451b3a4d73',
- 500 => '269ad603f41f'
- ],
- mtopcard\ChinaTelecomCard => [
- 30 => '64f6c11da78a',
- 50 => '229f1496b393',
- 100 => '4886e9ac1e39',
- 200 => 'a7550096b1b5'
- ]
- ];
- const ERRCODES = [100, 101, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1013, 9999];
- }
|