1234567891011121314151617181920212223 |
- <?php
- namespace refill\yikatong;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://47.104.76.103:8080/fee/api/charge.do';
- const QUERY_URL = 'http://47.104.76.103:8080/fee/api/query_state.do';
- const BALANCE_URL = 'http://47.104.76.103:8080/fee/api/query_balance.do';
- const USER_ID = '04f46671c696436aa30d';
- const KEY = '29defd3a5a634b6a9988';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_yikatong.php";
- const ExtHeaders = ['Content-Type: application/json'];
- const ChannelCode = [
- mtopcard\ChinaMobileCard => 'cmcc',
- mtopcard\ChinaUnicomCard => 'cucc',
- mtopcard\ChinaTelecomCard => 'ctcc'
- ];
- }
|