12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- namespace refill\baixuan_normal;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://119.23.174.34:8911/api/hf/order/submit';
- const QUERY_URL = 'http://119.23.174.34:8911/api/order/query';
- const BALANCE_URL = 'http://119.23.174.34:8911/api/account/balance';
- const APP_ID = 'ntzRlj2kNV';
- const APP_SECRET = 'HgQoSMSvolLaMZWV';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_baixuan_normal.php";
- const PRODUCT = [
- mtopcard\ChinaMobileCard => [
- 30 => 100067,
- 50 => 100025,
- 100 => 100026,
- 200 => 100027,
- 300 => 100028,
- 500 => 100029
- ],
- mtopcard\ChinaUnicomCard => [
- 30 => 100011,
- 50 => 100012,
- 100 => 100013,
- 200 => 100014
- ],
- mtopcard\ChinaTelecomCard => [
- 30 => 100015,
- 50 => 100016,
- 100 => 100017,
- 200 => 100018
- ],
- ];
- const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;charset=utf-8'];
- const ERRCODES = ['-10', '-12', '-13', '-14', '-15', '-16', '-18', '-21'];
- }
|