123456789101112131415161718192021222324252627282930 |
- <?php
- namespace refill\yuanta;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://59.110.225.82:8911/api/hf/order/submit';
- const QUERY_URL = 'http://59.110.225.82:8911/api/order/query';
- const BALANCE_URL = 'http://59.110.225.82:8911/api/account/balance';
- const APP_ID = '4hN2nZgRit';
- const APP_SECRET = 'bduMNryfJoWNkKaZ';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_yuanta.php";
- const PRODUCT = [
- mtopcard\ChinaMobileCard => [
- ],
- mtopcard\ChinaUnicomCard => [
- 100 => 100040,
- 200 => 100041
- ],
- mtopcard\ChinaTelecomCard => [
- 100 => 100046,
- 200 => 100047
- ],
- ];
- const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;charset=utf-8'];
- const ERRCODES = ['-10', '-12', '-13', '-14', '-15', '-16', '-18', '-21'];
- }
|