12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?php
- namespace refill\sialan;
- use mtopcard;
- class config
- {
- //回调地址需上游配置
- const ORDER_URL = 'http://120.27.19.82:9168/api/recharge';
- const QUERY_URL = 'http://120.27.19.82/api/query/order';
- const BALANCE_URL = 'http://120.27.19.82/api/query/balance';
- const API_ID = '16855';
- const API_KEY = 'd9057a2dda886bb48244314044df9696';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_sialan.php";
- const operator = [
- mtopcard\ChinaMobileCard => 2,
- mtopcard\ChinaUnicomCard => 3,
- mtopcard\ChinaTelecomCard => 4
- ];
- const product_id = [
- mtopcard\ChinaMobileCard => [
- 10 => 20001,
- 20 => 20002,
- 30 => 20003,
- 50 => 20004,
- 100 => 20005,
- 200 => 20006,
- 300 => 20007,
- 500 => 20008,
- ],
- mtopcard\ChinaUnicomCard => [
- 10 => 20009,
- 20 => 20010,
- 30 => 20011,
- 50 => 20012,
- 100 => 20013,
- 200 => 20014,
- 300 => 20015,
- 500 => 20016,
- ],
- mtopcard\ChinaTelecomCard => [
- 10 => 20017,
- 20 => 20018,
- 30 => 20019,
- 50 => 20020,
- 100 => 20021,
- 200 => 20022,
- 300 => 20023,
- 500 => 20024,
- ]
- ];
- const ERR_NOS = [
- '-10001','-10002','-10003','-10004','-10005','-10006','-10007','-10008','-10009','-10011','-10012','-10013','-10015','-10016','-10017'
- ];
- }
|