feat:瀚高适配

hangao
wangxy 5 months ago
parent 766eb1485c
commit e37a29de0f

@ -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">

Loading…
Cancel
Save