123456789101112131415161718192021 |
- <?php
- namespace refill\shengying;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://120.77.170.210:8080/telapi.aspx?v=H1.1&action=charge';
- const QUERY_URL = 'http://120.77.170.210:8080/telapi.aspx?v=H1.1&action=queryReport';
- const GET_PACKAGE_URL = 'http://120.77.170.210:8080/telapi.aspx?v=H1.1&action=getPackage';
- const Account = 'LZYZ';
- const ApiKey = '47f68456d0de4282ba5c34fda5306c1e';
- const NOTIFY_URL = BASE_SITE_URL . "/racc/callback/lingzh/shengying.php";
- const operator = [
- mtopcard\ChinaMobileCard => 1,
- mtopcard\ChinaUnicomCard => 2,
- mtopcard\ChinaTelecomCard => 3
- ];
- }
|