|
|
|
@ -87,11 +87,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
<select id="selectChildrenDeptById" parameterType="Long" resultMap="SysDeptResult">
|
|
|
|
|
select * from ${prefix}sys_dept where find_in_set(#{deptId}, ancestors)
|
|
|
|
|
select * from ${prefix}sys_dept where CAST(#{deptId} AS text) = ANY(string_to_array(ancestors, ','))
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
<select id="selectNormalChildrenDeptById" parameterType="Long" resultType="int">
|
|
|
|
|
select count(*) from ${prefix}sys_dept where status = 0 and del_flag = '0' and find_in_set(#{deptId}, ancestors)
|
|
|
|
|
select count(*) from ${prefix}sys_dept where status = '0' and del_flag = '0' and CAST(#{deptId} AS text) = ANY(string_to_array(ancestors, ','))
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
<insert id="insertDept" parameterType="SysDept">
|
|
|
|
|