美文网首页
Mybatis 批量更新操作 入参List,Map

Mybatis 批量更新操作 入参List,Map

作者: 一只弹窗仔 | 来源:发表于2019-12-11 14:04 被阅读0次

    -批量更新入参Map

    void updateByItemCode(@Param("hashMap") HashMap<String, String> hashMap);
    
        <update id="updateByItemCode" parameterType="java.util.Map">
            <foreach collection="hashMap.entrySet()" index="key" item="value" separator=";">
                update j_fin_billitem set
                <if test="value != null">
                    item_name = #{value}
                </if>
                where item_code = #{key}
            </foreach>
        </update>
    

    相关文章

      网友评论

          本文标题:Mybatis 批量更新操作 入参List,Map

          本文链接:https://www.haomeiwen.com/subject/zxvogctx.html