Mybatis-批量操作

批量更新

 @Update("")
    void batchUpdate(@Param("list") List list);

批量插入

  @Insert("")
    void batchInsert(@Param("list") List list);

你可能感兴趣的:(Mysql,java)