智慧保安后台管理-外网-验收版本
Administrator
2021-11-25 01233bc13663145957c9fcfce94b8eb87fee0714
src/main/java/org/springblade/modules/information/mapper/InformationMapper.xml
@@ -258,7 +258,8 @@
        AND dispatch = 0
        GROUP BY
        dept_id
        ) A ON A.dept_id = H.departmentid
        ) A
        ON A.dept_id = H.departmentid
        LEFT JOIN (
        SELECT
        COUNT( * ) AS lastnum,
@@ -272,9 +273,15 @@
        AND dispatch = 1
        GROUP BY
        dept_id
        ) B ON H.departmentid = B.dept_id where 1=1
        ) B
        ON H.departmentid = B.dept_id
        left join
        sys_jurisdiction sj
        on
        sj.id = H.jurisdiction
        where 1=1
        <if test="jurisdiction!=null and jurisdiction!='' and jurisdiction!='1372091709474910209'">
            and H.jurisdiction = #{jurisdiction}
            and (sj.id = #{jurisdiction} or sj.parent_id = #{jurisdiction})
        </if>
        <if test="deptid!=null and deptid!=''">
            and H.departmentid = #{deptid}
@@ -284,20 +291,38 @@
    <select id="selectSoil" resultType="java.util.HashMap">
        SELECT IFNULL(A.numj, 0) as numj,
        IFNULL(B.numwj, 0) as numz
        FROM (SELECT departmentid, jurisdiction FROM sys_information GROUP BY departmentid, jurisdiction) H
        LEFT JOIN (SELECT COUNT(*) AS numj, dept_id
        FROM
        (
        SELECT departmentid, jurisdiction FROM sys_information GROUP BY departmentid, jurisdiction
        ) H
        LEFT JOIN
        (
        SELECT COUNT(*) AS numj, dept_id
        FROM blade_user
        WHERE soil = 0 AND `status` = 1 AND is_deleted = 0 AND role_id = '1412226235153731586'
        GROUP BY dept_id) A ON A.dept_id = H.departmentid
        LEFT JOIN (SELECT COUNT(*) AS numwj, dept_id FROM blade_user WHERE soil = 1 and `status` = 1 AND is_deleted = 0
        AND role_id = '1412226235153731586' GROUP BY
        dept_id) B
        ON H.departmentid = B.dept_id where 1=1
        GROUP BY dept_id
        ) A
        ON A.dept_id = H.departmentid
        LEFT JOIN
        (
        SELECT COUNT(*) AS numwj, dept_id FROM blade_user
        WHERE soil = 1
        and `status` = 1
        AND is_deleted = 0
        AND role_id = '1412226235153731586'
        GROUP BY dept_id
        ) B
        ON H.departmentid = B.dept_id
        left join
        sys_jurisdiction sj
        on
        sj.id = H.jurisdiction
        where 1=1
        <if test="jurisdiction!=null and jurisdiction!='' and jurisdiction!='1372091709474910209'">
            and (sj.id = #{jurisdiction} or sj.parent_id = #{jurisdiction})
        </if>
        <if test="deptid!=null and deptid!=''">
            and H.departmentid = #{deptid}
        </if>
        <if test="jurisdiction!=null and jurisdiction!='' and jurisdiction!='1372091709474910209'">
            and H.jurisdiction = #{jurisdiction}
        </if>
    </select>