1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace refill\xunyin_kami;
- require_once(BASE_HELPER_RAPI_PATH . '/xunyin_kami/config.php');
- use refill;
- use Log;
- class RefillOil extends refill\IRefillOil
- {
- public function __construct($cfgs)
- {
- parent::__construct($cfgs);
- }
- public function add($card_no, $card_type, $amount, $params,&$net_errno = 0)
- {
- return [false, '不支持提单', false];
- }
- public function query($refill_info)
- {
- return [false, '暂无查询接口'];
- }
- public function balance()
- {
- return [false, '暂无余额接口'];
- }
- }
|