惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

小众软件
小众软件
V
Visual Studio Blog
博客园 - 三生石上(FineUI控件)
Last Week in AI
Last Week in AI
Blog — PlanetScale
Blog — PlanetScale
爱范儿
爱范儿
J
Java Code Geeks
A
About on SuperTechFans
F
Fortinet All Blogs
B
Blog
aimingoo的专栏
aimingoo的专栏
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Engineering at Meta
Engineering at Meta
Y
Y Combinator Blog
有赞技术团队
有赞技术团队
G
Google Developers Blog
Apple Machine Learning Research
Apple Machine Learning Research
V
V2EX
博客园_首页
博客园 - 叶小钗
罗磊的独立博客
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
D
Docker
云风的 BLOG
云风的 BLOG

博客园 - Bob.Xie

如何把一个本地项目上传到git MySQL导出数据字典 java 判断日期是否小于本月 生成随机字符串 工具类 vue 日期控件el-date-picker 获取选择月份的最后一天 vue 数据导入加载样式 CSS文字过多设置省略号 Spring 本地获取文件 SpringBoot 全局统一异常拦截器 List stream 数据处理 MySQL中concat,concat_ws以及group_concat的使用 Java获取当前日期属于今年的第几周 使用tesseract-ocr读取图片文字(转) element-ui表格el-table回显时默认全选数据 idea 插件库 MySQL分组修改排序序号 查看Linux服务器连接数,Oracle表和索引分析 转载:查看Oracle连接数 转载:查看ORACLE最耗时的SQL
mybatis 批量新增和修改
Bob.Xie · 2021-11-15 · via 博客园 - Bob.Xie
<insert id="addAttrValueBatch">
    <if test="materialCustomerAttrPOS != null and materialCustomerAttrPOS.size>0">
        insert into
        material_customer_attr(core_id,attr_code,attr_value,create_time,create_user,update_time,update_user)
        values
        <foreach collection="materialCustomerAttrPOS" item="it" separator=",">
            (#{it.coreId},#{it.attrCode},#{it.attrValue},now(),#{userId},now(),#{userId})
        </foreach>
    </if>
</insert>

<update id="updateBatch">
    <foreach collection="coreAttrlist" item="bean" index="index" open="" close="" separator=";">
        UPDATE material_core_attr
        <set>
            name = #{bean.name},
            attach_file_ids = #{bean.attachFileIds},
            release_time = #{bean.releaseTime},
            update_time = now(),
            update_user = #{userId}
        </set>
        <where>
            id = #{bean.id}
        </where>
    </foreach>
</update>