作者 lyh

gx

... ... @@ -43,8 +43,8 @@ class AiCommandController extends BaseController
],[
'id.required' => 'ID不能为空'
]);
$aiCommandLogic->ai_info();
$this->response('success');
$info = $aiCommandLogic->ai_info();
$this->response('success',Code::SUCCESS,$info);
}
/**
... ...
... ... @@ -26,7 +26,7 @@ class AiCommandLogic extends BaseLogic
if($info === false){
$this->fail('当前数据不存在');
}
return $this->success();
return $this->success($info);
}
/**
... ...