‘liusuyi’
2023-07-28 bfc9d5ca46948fbe0623211c030de200df04aba2
ruoyi-system/src/main/resources/mapper/system/SysUserMapper.xml
@@ -110,14 +110,18 @@
            AND u.create_time <= to_timestamp(#{params.endTime},'yyyy-MM-DD')
        </if>
        <if test="appUserType!=null and appUserType!=''"> AND u.app_user_type = #{appUserType}</if>
        <if test="deptId != null ">and (d.dept_id = #{deptId} OR d.dept_id IN ( SELECT t.dept_id FROM sys_dept t
            WHERE cast(#{deptId} as varchar) = any(string_to_array(ancestors,',')) ))
        </if>
        <!-- 数据范围过滤 -->
        ${params.dataScope}
    </select>
    <select id="selectAllAppUserList" parameterType="SysUser" resultMap="SysUserResult">
        <include refid="selectUserVo"/>
        where u.del_flag = '0' and u.app_user_type in('0','1')
        <!-- 数据范围过滤 -->
        ${params.dataScope}
        <if test="deptId != null ">and (d.dept_id = #{deptId} OR d.dept_id IN ( SELECT t.dept_id FROM sys_dept t
            WHERE cast(#{deptId} as varchar) = any(string_to_array(ancestors,',')) ))
        </if>
    </select>
    <select id="selectAllocatedList" parameterType="SysUser" resultMap="SysUserResult">
        select distinct u.user_id, u.dept_id, u.user_name, u.nick_name, u.email, u.phonenumber, u.status, u.create_time