智慧保安后台管理-外网
Administrator
2021-11-11 f0e2074cb81056813fe8b34aa6b7d8a2419e1bdf
src/main/java/org/springblade/modules/system/mapper/UserMapper.xml
@@ -140,19 +140,22 @@
        on
        bd.id = bu.dept_id
        left join
        sys_information si
        on
        si.departmentid = bd.id
        left join
        sys_jurisdiction sj
        on
        sj.id = si.jurisdiction
        sj.id = bu.jurisdiction
        left join
        blade_role br
        on
        br.id = bu.role_id
        where bu.is_deleted = 0
        <if test="user.tenantId!=null and user.tenantId != ''">
            and tenant_id = #{user.tenantId}
        </if>
        <if test="user.account!=null and user.account != ''">
            and account like concat('%', #{user.account},'%')
        </if>
        <if test="user.roleId!=null and user.roleId != ''">
            and br.role_alias = '公安管理员'
        </if>
        <if test="user.realName!=null and user.realName != ''">
            and real_name like concat(concat('%', #{user.realName}),'%')
@@ -617,6 +620,7 @@
        and bd.is_deleted = 0
        and bd.id = #{user.deptId}
        and br.role_alias = '保安'
        and bu.dispatch = 1
        )
    </select>