Package org.mybatis.dynamic.sql.insert
Class BatchInsertModel.Builder<T>
- java.lang.Object
-
- org.mybatis.dynamic.sql.insert.BatchInsertModel.Builder<T>
-
- Enclosing class:
- BatchInsertModel<T>
public static class BatchInsertModel.Builder<T> extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description Builder()
-
Method Summary
Modifier and Type Method Description BatchInsertModel<T>
build()
BatchInsertModel.Builder<T>
withColumnMappings(java.util.List<InsertMapping> columnMappings)
BatchInsertModel.Builder<T>
withRecords(java.util.Collection<T> records)
BatchInsertModel.Builder<T>
withTable(SqlTable table)
-
-
-
Method Detail
-
withTable
public BatchInsertModel.Builder<T> withTable(SqlTable table)
-
withRecords
public BatchInsertModel.Builder<T> withRecords(java.util.Collection<T> records)
-
withColumnMappings
public BatchInsertModel.Builder<T> withColumnMappings(java.util.List<InsertMapping> columnMappings)
-
build
public BatchInsertModel<T> build()
-
-