1234567891011121314151617181920212223 |
- <?php
- namespace refill\jinxin;
- use mtopcard;
- class config
- {
- //回调地址需在上游配置
- const ORDER_URL = 'http://39.106.26.90:8125/api/external/submitOrder';
- const QUERY_URL= 'http://39.106.26.90:8125/api/external/queryOrder';
- const BALANCE_URL= 'http://39.106.26.90:8125/api/external/queryBalance';
- const USER_ID= '137';
- const KEY = 'LRygb652kqpt2JoEe5KohdaWLf2YmPdn';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_jinxin.php";
- const operator = [
- mtopcard\ChinaMobileCard => 1,
- mtopcard\ChinaUnicomCard => 2,
- mtopcard\ChinaTelecomCard => 3
- ];
- const ExtHeaders = ['Content-Type: application/json'];
- }
|