123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?php
- namespace refill\runpu;
- use mtopcard;
- class config
- {
- //http://www.firstsup.net/showdoc
- const ORDER_URL = 'http://123.57.216.254:9086/onlinepay.do';
- const QUERY_URL= 'http://123.57.216.254:9086/searchpay.do';
- const BALANCE_URL = 'http://123.57.216.254:9086/searchbalance.do';
- const USER_ID= '10005984';
- const KEY = 'z26Stz8XXyQx7bFyZbr6RxPBekepA3fy';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_runpu.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 Amounts = [
- '17639' => 5,
- '17148' => 7,
- '17291' => 12,
- '17293' => 16,
- '17294' => 30,
- '30000001650' => 24,
- '15009' => 20,
- '30000002330' => 55,
- '17595' => 80,
- '30000001473' => 10,
- '30000001474' => 10,
- '30000001475' => 30,
- '15585' => 15,
- '15587' => 30,
- '17621' => 60,
- '17479' => 80,
- ];
- }
|