Interface InsertListMapper<T>

Type Parameters:
T - 泛型
All Known Subinterfaces:
OracleMapper<T>

public interface InsertListMapper<T>
Oracle批量插入 支持@KeySql.genId(),不支持@KeySql.sql() 因INSERT ALL语法不支持序列,可手工获取序列并设置至Entity或绑定触发器
Since:
Java 17+
Author:
Kimi Liu
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    insertList(List<? extends T> recordList)
    批量操作
  • Method Details

    • insertList

      @InsertProvider(type=OracleProvider.class, method="dynamicSQL") int insertList(List<? extends T> recordList)
      批量操作
      Parameters:
      recordList - 记录值
      Returns:
      the int