You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
717 B
29 lines
717 B
3 months ago
|
<?php
|
||
|
|
||
|
namespace app\admin\controller;
|
||
|
|
||
|
// 充值订单
|
||
|
use app\admin\service\RechargeService;
|
||
|
|
||
|
class Recharge extends AdminBaseController
|
||
|
{
|
||
|
|
||
|
public function index()
|
||
|
{
|
||
|
$service = new RechargeService();
|
||
|
$result = $service->index($this->request->param(),$this->getAdminId());
|
||
|
return json($result);
|
||
|
}
|
||
|
public function info()
|
||
|
{
|
||
|
$service = new RechargeService();
|
||
|
$result = $service->info($this->request->param(),$this->getAdminId());
|
||
|
return json($result);
|
||
|
}
|
||
|
public function check()
|
||
|
{
|
||
|
$service = new RechargeService();
|
||
|
$result = $service->check($this->request->param(),$this->getAdminId());
|
||
|
return json($result);
|
||
|
}
|
||
|
}
|