From 7805d4b3d474a5c19c75c772ec7eb5c51e304853 Mon Sep 17 00:00:00 2001 From: west <457395070@qq.com> Date: Wed, 8 Apr 2026 11:10:03 +0800 Subject: [PATCH] =?UTF-8?q?fix(department):=20=E6=9B=B4=E6=96=B0=E9=83=A8?= =?UTF-8?q?=E9=97=A8=E6=97=B6=E5=90=8C=E6=AD=A5=E4=BF=9D=E5=AD=98=E5=9F=BA?= =?UTF-8?q?=E7=A1=80=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Service/Permission/DepartmentService.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Service/Permission/DepartmentService.php b/app/Service/Permission/DepartmentService.php index 18510e3e2..a65afb801 100644 --- a/app/Service/Permission/DepartmentService.php +++ b/app/Service/Permission/DepartmentService.php @@ -44,6 +44,7 @@ public function updateById(mixed $id, array $data): mixed if (empty($entity)) { throw new BusinessException(ResultCode::NOT_FOUND); } + $this->repository->updateById($id, $data); $this->handleEntity($entity, $data); }); }