mybatis plus 批量优化 foreach

foreach
choose为一个整体,
when表示if ,(when可重复,即实现if..else if..else if..)
otherwise表示else。

 

mybatis并没有if..else,在mybatis的sql mapper文件中,条件判断要用choose..when..otherwise。

            
                AND id IN
                
                    #{usId}
                
            
            
                AND id IN(0)
            
        

 

 

 


    
        
            UPDATE t_cost_type
            SET type_name=#{cost.typeName},
            modify_id=#{cost.modifyId},
            modify_time=#{cost.modifyTime}
            WHERE id=#{cost.id}
        
    

    
        INSERT INTO t_cost_type(type_name,father_id,`status`,create_id,create_time) VALUES
        
            (#{cost.typeName},#{cost.fatherId},#{cost.status},#{cost.createId},#{cost.createTime})
        
    

 

 

plus:  

XXService.insertBatch()

XXService.updateBatchById()

xxService.deleteBatchIds()

xxService.selectBatchIds

 

plus的优势就是减少开发者去写太简单的增删改查的sql,自动生成拼接好的sql

你可能感兴趣的:(mybatis plus 批量优化 foreach)