12345678910111213141516171819202122232425262728293031 |
- <?php
- namespace refill\yunchonggongdf;
- 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 = 'FckhPc9kAK';
- const APP_SECRET = 'zOGQRiMKyfoxBtJy';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_yunchonggongdf.php";
- const USE_TYPE = [
- 'home' => 1,
- 'commerce' => 3,
- 'pedlar' => 2,
- ];
- const PRODUCT = [
- 50 => 100113,
- 100 => 100114,
- 200 => 100115,
- 300 => 100116,
- 500 => 100117,
- 1000 => 100118
- ];
- const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;charset=utf-8'];
- const ERRCODES = ['-10', '-12', '-13', '-14', '-15', '-16', '-18', '-21'];
- }
|