123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- namespace refill\oufei;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'https://api2.ofpay.com/newOnlineOrder.do';
- const QUERY_URL= 'https://api2.ofpay.com/queryOrderInfo.do';
- const BALANCE_URL = 'https://api2.ofpay.com/newqueryuserinfo.do';
- const USER_ID = 'A230504001';
- const USER_PWS = '69D5C1C7B8C476A3';
- const KEY = '736E75E8BD6A943B';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_oufei.php";
- const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;charset=utf-8'];
- const ERR_NOS = [
- '1001', '1002', '1003', '1004', '1005', '1006', '1007', '1008', '319', '321', '331', '9998', '4001'
- ];
- const Product = [
- mtopcard\PetroChinaCard => [
- 50 => 64349107,
- 100 => 64349106,
- 200 => 64349105,
- 500 => 64349103,
- 1000 => 64349101,
- ],
- mtopcard\SinopecCard => [
- 50 => 64313605,
- 100 => 64157004,
- 200 => 64157003,
- 500 => 64157002,
- 1000 => 64157001,
- ],
- ];
- }
|