1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php
- namespace refill\ruixunda;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://47.98.117.207:8911/api/hf/order/submit';
- const QUERY_URL = 'http://47.98.117.207:8911/api/order/query';
- const BALANCE_URL = 'http://47.98.117.207:8911/api/account/balance';
- const APP_ID = 'HopCzvajlL';
- const APP_SECRET = 'iLDpqQtdzhOaaNms';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_ruixunda.php";
- const PRODUCT = [
- mtopcard\ChinaMobileCard => [
- 30 => 7,
- 50 => 8,
- 100 => 9,
- 200 => 10,
- 300 => 11,
- 500 => 12,
- ],
- mtopcard\ChinaUnicomCard => [
- 30 => 13,
- 50 => 14,
- 100 => 15,
- 200 => 16,
- 300 => 17,
- 500 => 18,
- ],
- mtopcard\ChinaTelecomCard => [
- 30 => 19,
- 50 => 20,
- 100 => 21,
- 200 => 22,
- 300 => 23,
- 500 => 24,
- ],
- ];
- const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;charset=utf-8'];
- const ERRCODES = ['-10', '-12', '-13', '-14', '-15', '-16', '-18', '-21'];
- }
|