智慧保安后台管理-外网项目备份
钟日健
2026-06-01 62eb499b0c969f246d3245d1429a97da4de1ce28
src/main/java/org/springblade/modules/system/mapper/DeptMapper.xml
@@ -200,6 +200,24 @@
        and dept.id!= 1426355050199945218
        <if test="jurisdiction!=null and jurisdiction!='' and jurisdiction!='1372091709474910209'">
            and (sj.id = #{jurisdiction} or sj.parent_id = #{jurisdiction})
            union
                    (
                    SELECT
                    id,
                    parent_id,
                    dept_name AS title,
                    id AS "value",
                    id AS "key",
                    0 AS "has_children"
                    FROM
                    blade_dept
                    where is_deleted = 0
                    and
                    (id = 1413470343230877697
                    or id = 1425366663452196865
                    or id = 1420222768149966850
                    or id = 1426354978959691778)
                    )
        </if>
    </select>
@@ -652,7 +670,7 @@
    </select>
    <!--统计单位类型数量-->
    <select id="selectCount" resultType="java.util.HashMap">
    <select id="getCount" resultType="java.util.HashMap">
        SELECT dept.id as jurisdiction, dept.dept_name AS title
        FROM blade_dept dept
        WHERE dept.dept_name like concat(concat('%', #{name}), '%')
@@ -871,4 +889,19 @@
               '1415620707473223681')
    </select>
    <!--查询当前保安单位下的派遣单位信息-->
    <select id="getDispatchUnitList" resultMap="treeNodeResultMap">
        SELECT
        id,
        0 as parent_id,
        name AS title,
        id AS "value",
        id AS "key",
        0 AS "has_children"
        FROM
        sys_dispatcher_unit
        where dept_id = #{deptId}
    </select>
</mapper>