diff --git a/os-system/src/main/resources/mapper/system/SysDeptMapper.xml b/os-system/src/main/resources/mapper/system/SysDeptMapper.xml
index 76bc298..4726cb1 100644
--- a/os-system/src/main/resources/mapper/system/SysDeptMapper.xml
+++ b/os-system/src/main/resources/mapper/system/SysDeptMapper.xml
@@ -102,7 +102,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
email,
status,
create_by,
- create_time
+ create_time,
+ del_flag
)values(
#{deptId},
#{parentId},
@@ -114,7 +115,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
#{email},
#{status},
#{createBy},
- now()
+ now(),
+ '0'
)
diff --git a/os-system/src/main/resources/mapper/system/SysRoleMapper.xml b/os-system/src/main/resources/mapper/system/SysRoleMapper.xml
index b1815d1..15d5d08 100644
--- a/os-system/src/main/resources/mapper/system/SysRoleMapper.xml
+++ b/os-system/src/main/resources/mapper/system/SysRoleMapper.xml
@@ -119,7 +119,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
status,
remark,
create_by,
- create_time
+ create_time,
+ del_flag
)values(
#{roleId},
#{roleName},
@@ -131,7 +132,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
#{status},
#{remark},
#{createBy},
- now()
+ now(),
+ '0'
)
diff --git a/os-system/src/main/resources/mapper/system/SysUserMapper.xml b/os-system/src/main/resources/mapper/system/SysUserMapper.xml
index ec80c2a..c767e7b 100644
--- a/os-system/src/main/resources/mapper/system/SysUserMapper.xml
+++ b/os-system/src/main/resources/mapper/system/SysUserMapper.xml
@@ -161,6 +161,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
status,
create_by,
remark,
+ del_flag,
create_time
)values(
#{userId},
@@ -175,6 +176,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
#{status},
#{createBy},
#{remark},
+ '0',
now()
)