Administrator
2021-08-28 7327c2b113573bccaeef5b3fc5c82011abc00cd8
src/main/java/org/springblade/modules/system/mapper/UserMapper.xml
@@ -379,4 +379,39 @@
        select CAST(id AS CHAR) as groupmember,real_name as rname from blade_user
    </select>
    <!--查询保安员信息-->
    <select id="getUserDetails" resultType="org.springblade.modules.system.vo.UserVO">
        select
        bu.*,
        bd.dept_name deptName
         from
        blade_user bu
        left join
        blade_dept bd
        on
        bu.dept_id = bd.id
        where bu.id = #{user.id}
    </select>
    <select id="seleL" resultType="java.util.HashMap">
        SELECT
            *
        FROM
            blade_user where 1=1
        <if test="type!=null and type=='2'.toString()">
            and role_id='1414840172333842433' and `status`=1 AND is_deleted=0
        </if>
        <if test="type!=null and type=='1'.toString()">
            AND ( role_id = '1412226235153731586'
            OR role_id = '1416733602219110402') AND `status` = 1
            AND is_deleted = 0
            AND dept_id = '1425665656887545857'
        </if>
        <if test="deptid!=null and deptid!=''">
            and dept_id=#{deptid}
        </if>
        <if test="jurisdiction!=null and jurisdiction!=''">
            and jurisdiction=#{jurisdiction}
        </if>
    </select>
</mapper>