Interface InsertListMapper<T>
- All Known Subinterfaces:
OracleMapper<T>
public interface InsertListMapper<T>
- Author:
- qrqhuangcy
-
Method Summary
-
Method Details
-
insertList
@InsertProvider(type=OracleProvider.class, method="dynamicSQL") int insertList(List<? extends T> recordList) 生成如下批量SQL:
INSERT ALL
INTO demo_country ( country_id,country_name,country_code ) VALUES ( ?,?,? )
INTO demo_country ( country_id,country_name,country_code ) VALUES ( ?,?,? )
INTO demo_country ( country_id,country_name,country_code ) VALUES ( ?,?,? )
SELECT 1 FROM DUAL
- Parameters:
recordList-- Returns:
-