12345678910111213141516171819202122232425262728293031323334 |
- <?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)
- {
- return [true, $input['order_sn'], false];
- }
- public function query($refill_info)
- {
- return [true,''];
- }
- public function balance()
- {
- return [false, '暂无余额接口'];
- }
- }
|