guoshilong
2024-02-02 36b7f863fda32d53b5cdadd6ee1514de4aea3905
src/main/java/org/springblade/modules/system/mapper/UserMapper.xml
@@ -201,6 +201,13 @@
        where bu.is_deleted = 0 and bud.id is null
        and bu.dept_id!=''
    </select>
    <select id="getUserListByDeptIds" resultType="org.springblade.modules.system.entity.User">
        SELECT * FROM blade_user bu where is_deleted = 0
        and dept_id in
        <foreach collection="deptIds.split(',')" item="item" open="(" close=")" separator=",">
            #{item}
        </foreach>
    </select>
    <select id="getUserInfoByPropertyId" resultType="org.springblade.modules.system.entity.User"
            parameterType="java.lang.String">