李昊 4 年 前
コミット
c3ce9c8d23
共有1 個のファイルを変更した2 個の追加1 個の削除を含む
  1. 2 1
      GxPress/Repository/GxPress.Repository.Implement/DepartmentRepository.cs

+ 2 - 1
GxPress/Repository/GxPress.Repository.Implement/DepartmentRepository.cs

@@ -185,7 +185,8 @@ namespace GxPress.Repository.Implement
             dep.LeaderId = request.LeaderId;
             dep.Name = request.Name;
             dep.Sort = request.Sort;
-
+            if (request.ParentId > 0)
+                dep.ParentId = request.ParentId;
             return await UpdateAsync(dep);
         }