作者 lyh

gx

... ... @@ -60,8 +60,8 @@ class CustomModuleExtentController extends BaseController
* @time :2023/12/4 15:45
*/
public function save(CustomModuleExtendLogic $logic){
$logic->extendSave();
$this->response('success');
$info = $logic->extendSave();
$this->response('success',Code::SUCCESS,$info);
}
/**
... ...
... ... @@ -50,7 +50,7 @@ class CustomModuleExtendLogic extends BaseLogic
}else{
$this->extendAdd();
}
return $this->success();
return $this->success($this->param);
}
/**
... ...