123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?php
- namespace refill\ruixunda_lt;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://120.76.172.131:8911/api/hf/order/submit';
- const QUERY_URL = 'http://120.76.172.131:8911/api/order/query';
- const BALANCE_URL = 'http://120.76.172.131:8911/api/account/balance';
- const APP_ID = 'uufSSr9QWH';
- const APP_SECRET = 'mOXpDKsEwRUmsKgO';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_ruixunda_lt.php";
- const PRODUCT = [
- mtopcard\ChinaMobileCard => [
- 30 => 100116,
- 50 => 100117,
- 100 => 100118,
- 200 => 100119,
- ],
- mtopcard\ChinaUnicomCard => [
- 30 => 100086,
- 50 => 100087,
- 100 => 100083,
- 200 => 100084,
- 300 => 100085,
- 500 => 100121,
- ],
- //超面值电信
- mtopcard\ChinaTelecomCard => [
- 30 => 100111,
- 50 => 100112,
- 100 => 100113,
- 200 => 100114,
- ]
- ];
- const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;charset=utf-8'];
- const ERRCODES = ['-10', '-12', '-13', '-14', '-15', '-16', '-18', '-21'];
- }
|