123456789101112131415161718192021222324252627282930 |
- <?php
- namespace refill\yunlingdf;
- class config
- {
- const ORDER_URL = 'http://121.89.243.74:9086/gameonlinepay.do';
- const QUERY_URL= 'http://121.89.243.74:9086/searchpay.do';
- const BALANCE_URL= 'http://121.89.243.74:9086/searchbalance.do';
- const USER_ID= '10002623';
- const KEY = 'M4GZNKZCW6kasAMbpGxDn3AcPJiYDFS5';
- // const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_yunlingdf.php";
- const NOTIFY_URL = "https://www.xyzshops.cn/mobile/signature.php";
- const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;charset=utf-8'];
- const ERR_NOS = [
- '5001','5002','5003','5004','5005','5008','5009','5010','5011','5012'
- ];
- //需补全省份
- const product_id = [
- 1 => [
- 50 => '130000006845',
- 100 => '130000006846',
- 200 => '130000006847',
- 300 => '130000006848',
- 500 => '130000006849',
- ],
- ];
- }
|