123456789101112131415161718192021222324252627282930313233 |
- <?php
- namespace refill\yunchonggong_yd;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://119.23.54.206:8911/api/order/submit';
- const QUERY_URL = 'http://119.23.54.206:8911/api/order/query';
- const BALANCE_URL = 'http://119.23.54.206:8911/api/account/balance';
- const APP_ID = 'kbDyqz9L7X';
- const APP_SECRET = 'IXxRhCpFVvqEHgNC';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_yunchonggong_yd.php";
- const PRODUCT = [
- mtopcard\ChinaMobileCard => [
- 30 => 100130,
- 50 => 100131,
- 100 => 100132,
- 200 => 100133
- ],
- mtopcard\ChinaUnicomCard => [
- ],
- mtopcard\ChinaTelecomCard => [
- ],
- ];
- const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;charset=utf-8'];
- const ERRCODES = ['-10', '-12', '-13', '-14', '-15', '-16', '-18', '-21'];
- }
|