陈昶聿
3 天以前 e06a9091653be33242a2840b7cef10af7b97fff4
smartor/src/main/resources/mapper/smartor/SysUserDeptMapper.xml
@@ -47,8 +47,8 @@
    <select id="selectSysUserDeptList" parameterType="com.ruoyi.common.core.domain.entity.SysUserDept"
            resultMap="SysUserDeptResult">
        <include refid="selectSysUserDeptVo"/>
        <where>
            del_flag=0
        where 1=1
            and del_flag = 0
            and orgid=#{orgid}
            <if test="userId != null ">
                and user_id = #{userId}
@@ -74,7 +74,6 @@
            <if test="campusid != null ">
                and campusid = #{campusid}
            </if>
        </where>
    </select>
    <select id="selectSysUserDeptById" parameterType="Long"
@@ -238,5 +237,43 @@
        where user_id =#{userId} and dept_code=#{deptCode}
    </update>
    <update id="updateSysUserDeptForSync" parameterType="com.ruoyi.common.core.domain.entity.SysUserDept">
        update sys_user_dept
        <trim prefix="SET" suffixOverrides=",">
            <if test="deptId != null">dept_id =
                #{deptId},
            </if>
            <if test="delFlag != null ">
                del_flag = #{delFlag},
            </if>
            <if test="createTime != null ">
                create_time = #{createTime},
            </if>
            <if test="updateTime != null ">
                update_time = #{updateTime},
            </if>
            <if test="deptType != null ">
                dept_type = #{deptType},
            </if>
            <if test="deptCode != null ">
                dept_code = #{deptCode},
            </if>
            <if test="deptName != null ">
                dept_name = #{deptName},
            </if>
            <if test="orgid != null ">
                orgid = #{orgid},
            </if>
            <if test="campusid != null ">
                campusid = #{campusid},
            </if>
        </trim>
        where user_id =#{userId}
        <if test="orgid != null and orgid != ''">
            and orgid = #{orgid}
        </if>
        <if test="campusid != null and campusid != ''">
            and campusid = #{campusid}
        </if>
    </update>
</mapper>