1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- namespace refill\lx;
- require_once(BASE_HELPER_RAPI_PATH . '/lx/config.php');
- use refill;
- use mtopcard;
- use Log;
- class RefillOil extends refill\IRefillOil
- {
- public function __construct($cfgs)
- {
- parent::__construct($cfgs);
- }
- public function add($card_no, $card_type, $amount, $input,&$net_errno = 0)
- {
- refill\util::send_normal($params['order_sn']);
- return [true , '',false];
- }
- public function query($refill_info)
- {
- return [true,''];
- }
- public function balance()
- {
- return [false, '暂无余额接口'];
- }
- }
|