From 7298f9b81ffd3ca954bac37c3bff1dc5a820da5a Mon Sep 17 00:00:00 2001 From: "autumn.g@foxmail.com" Date: Mon, 30 Oct 2023 11:17:33 +0800 Subject: [PATCH] =?UTF-8?q?update=20=E6=96=B0=E5=A2=9E=E7=AD=89=E7=BA=A7?= =?UTF-8?q?=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/resources/mapper/system/SysDeptMapper.xml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/jsowell-system/src/main/resources/mapper/system/SysDeptMapper.xml b/jsowell-system/src/main/resources/mapper/system/SysDeptMapper.xml index e9cbd7978..b854f4afb 100644 --- a/jsowell-system/src/main/resources/mapper/system/SysDeptMapper.xml +++ b/jsowell-system/src/main/resources/mapper/system/SysDeptMapper.xml @@ -92,6 +92,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" dept_id, parent_id, + dept_level, dept_name, ancestors, order_num, @@ -105,6 +106,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" #{deptId}, #{parentId}, + #{deptLevel}, #{deptName}, #{ancestors}, #{orderNum}, @@ -121,6 +123,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" update sys_dept parent_id = #{parentId}, + dept_level = #{deptLevel}, dept_name = #{deptName}, ancestors = #{ancestors}, order_num = #{orderNum},