123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
- namespace refill\weixue_yi;
- use mtopcard;
- class config
- {
- //https://www.showdoc.com.cn/AQL666666/
- const ORDER_URL = 'http://121.36.216.15:9086/onlinepay.do';
- const QUERY_URL= 'http://121.36.216.15:9086/searchpay.do';
- const BALANCE_URL = 'http://121.36.216.15:9086/searchbalance.do';
- const USER_ID= '10002804';
- const KEY = 'WcttZQCkxhjKkWrtMc6yEixtWnS3s7wG';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_weixue_yi.php";
- const operator = [
- mtopcard\ChinaMobileCard => 'yd',
- mtopcard\ChinaUnicomCard => 'lt',
- mtopcard\ChinaTelecomCard => 'dx'
- ];
- const ERR_NOS = [
- '5001','5002','5003','5004','5005','5008','5009','5010','5011','5012'
- ];
- const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;'];
- const ProductIdS = [
- mtopcard\ChinaMobileCard =>
- [
- 100 => '101689',
- 200 => '101690',
- 300 => '101691',
- 500 => '101692',
- ],
- mtopcard\ChinaUnicomCard =>
- [
- 50 => '101706',
- 100 => '101707',
- 200 => '101708',
- 300 => '101709',
- ],
- mtopcard\ChinaTelecomCard =>
- [
- 100 => '101725',
- 200 => '101726',
- 300 => '101727',
- 500 => '101728'
- ],
- ];
- }
|