123456789101112131415161718192021 |
- <?php
- namespace refill\wailing;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://206.119.82.136/api/telpay';
- const QUERY_URL = 'http://206.119.82.136/api/telpay/query';
- const MCHID = 10045;
- const KEY = 'a1b2f886cfda41170547cd6cfc1cf16b';
- const NOTIFY_URL = BASE_SITE_URL . "/racc/callback/lingzh/wailing.php";
- const NotifyTimeout = 7200;
- const operator = [
- mtopcard\ChinaMobileCard => 0,
- mtopcard\ChinaUnicomCard => 1,
- mtopcard\ChinaTelecomCard => 2
- ];
- }
|