欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

mybatis-plus  mapper中foreach循环操作代码详解(新增或修改)

程序员文章站 2022-07-06 13:38:38
.循环添加接口处:分别是 void 无返回类型 ;有的话是(resulttype)返回类型,参数类型(parametertype) list ,如:在mapper文件中分别对应id,参数类型和返回类型...

.循环添加

接口处:

mybatis-plus  mapper中foreach循环操作代码详解(新增或修改)

分别是 void 无返回类型 ;有的话是(resulttype)返回类型,参数类型(parametertype) list , 

如:

mybatis-plus  mapper中foreach循环操作代码详解(新增或修改)

mybatis-plus  mapper中foreach循环操作代码详解(新增或修改)

在mapper文件中分别对应id,参数类型和返回类型。

循环处理,如下:

<insert id="insertpack" parametertype="java.util.list">
  insert into t_ev_bu_pack
  (
   pack_code,
   bin,
   pack_prod_time,
   created_date,
   created_by,
   battery_class,
   supplier_name,
   terminal_user
  )
  values
  <foreach collection="list" item="item" index="index" open="" close="" separator=",">
  (
   #{item.pack_code},
   #{item.bin}, 
   #{item.pack_prod_time},
   now(),
   #{item.created_by},
   #{item.battery_class},
   #{item.supplier_name},
   #{item.terminal_user}
  )
  </foreach>
 </insert>

由于没有返回类型,只有方法id和参数。

循环更新:

mybatis-plus  mapper中foreach循环操作代码详解(新增或修改)

 <update id="updatepack" parametertype="java.util.list">
  <foreach collection="list" item="item" index="index" open="" close="" separator=";">
   update t_ev_bu_pack
   <trim prefix="set" suffixoverrides=","> 
    <!-- bin = #{bin}, -->
    <if test="item.terminal_user != null and item.terminal_user != ''">
     terminal_user = #{item.terminal_user},
    </if> 
    <if test="item.supplier_name != null and item.supplier_name != ''">
     supplier_name = #{item.supplier_name},
    </if> 
    <if test="item.pack_prod_time != null and item.pack_prod_time != ''">
     pack_prod_time = #{item.pack_prod_time},
    </if> 
    <if test="item.battery_class != null and item.battery_class != ''">
     battery_class = #{item.battery_class},
    </if> 
    last_updated_time = now(),
    last_updated_by = #{item.last_updated_by}
   </trim>
   where pack_code = #{item.pack_code}
  </foreach>
 </update>

貌似有点区别,insert只需要循环取值就行了,update则更复杂点因为set 后面又‘,'号分隔,这个update 是循环所有数据,每条数据都有一个id(即根据主键id修改所以foreach在最外层),而insert只需要循环要插入的值即可(只需要循环传入的数据即可);

到此这篇关于mybatis-plus mapper中foreach循环操作代码详解(新增或修改)的文章就介绍到这了,更多相关mybatis-plus foreach循环内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!