mybatis 添加多条数据(动态 :表名,列名,值)

columnList: 列 
valueList:值
tablename:表名

int batchSaveList(@Param("columnkey") List columnList,@Param("columnvalue") List> valueList,@Param("tableName") String tablename);


      insert into ${tableName} 
      
        ${item}
       
       values 
       
           
              #{clv}
           
       
  

你可能感兴趣的:(mybatis 添加多条数据(动态 :表名,列名,值))