1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- namespace refill\oufei;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://apitest.ofpay.com/newOnlineOrder.do';
- const QUERY_URL= 'http://apitest.ofpay.com/queryOrderInfo.do';
- const BALANCE_URL = 'http://apitest.ofpay.com/newqueryuserinfo.do';
- const USER_ID = 'A08566';
- const USER_PWS = 'of111111';
- const KEY = 'OFCARD';
- // const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_oufei.php";
- const NOTIFY_URL = "https://www.xyzshops.cn/mobile/signature.php";
- const operator = [
- mtopcard\ChinaMobileCard => 1,
- mtopcard\ChinaUnicomCard => 2,
- mtopcard\ChinaTelecomCard => 3
- ];
- 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 => [
- 200 => 64157003,
- ],
- mtopcard\SinopecCard => [
- 200 => 2000200,
- ],
- ];
- }
|