mybatis 批量处理数据

新增批量处理数据
insert 允许 values(),(),()

 
    insert into T_Alarm_Group_Rel_Param (AlarmGroupID,AlarmID) values
      
        (#{alarmgroupid},#{person})
      
  

删除批量处理数据


      AlarmGroupID=#{alarmgroupid} and AlarmID in
      
        #{item}
      

修改批量数据

 
               update table
               
                 state=${item.state}
               
               where id = ${item.id}
        

你可能感兴趣的:(Mybatis)