mybatis批量更新多个字段

1.mapper xml实现


    update vm_activity_channel_product
    
        
            
                
                    when id=#{item.id} then #{item.promotionTempName}
                
            
        
        
            
                
                    when id=#{item.id} then #{item.orderNum}
                
            
        
        
            
                
                    when id=#{item.id} then #{item.tagName}
                
            
        
    
    
        
            id = #{item.id}
        
    

2.mapper接口定义

void  updateChannelProductTempNameAndOrder( List list);

3.接口实现

//定义一个批量更新集合
List list  = new ArrayList<>();
for (Object obj : channelProductArray) {
    list.add((JSONObject) obj);
}
if(list.size()>0){
    //执行批量更新
    vmActivityChannelProductDao.updateChannelProductTempNameAndOrder(list);
}

 

你可能感兴趣的:(数据库)