mirror of https://gitee.com/makejava/EasyCode.git
insertOrUpdateBatch方法更新javadoc,提醒入参是空List的时候会抛SQL语句错误的异常
This commit is contained in:
parent
6c240464a1
commit
107c49699f
|
@ -70,6 +70,7 @@ public interface $!{tableName} {
|
|||
*
|
||||
* @param entities List<$!{tableInfo.name}> 实例对象列表
|
||||
* @return 影响行数
|
||||
* @throws org.springframework.jdbc.BadSqlGrammarException 入参是空List的时候会抛SQL语句错误的异常,请自行校验入参
|
||||
*/
|
||||
int insertOrUpdateBatch(@Param("entities") List<$!{tableInfo.name}> entities);
|
||||
|
||||
|
|
|
@ -33,6 +33,7 @@ int insertBatch(@Param("entities") List<$!{tableInfo.name}> entities);
|
|||
*
|
||||
* @param entities List<$!{tableInfo.name}> 实例对象列表
|
||||
* @return 影响行数
|
||||
* @throws org.springframework.jdbc.BadSqlGrammarException 入参是空List的时候会抛SQL语句错误的异常,请自行校验入参
|
||||
*/
|
||||
int insertOrUpdateBatch(@Param("entities") List<$!{tableInfo.name}> entities);
|
||||
|
||||
|
|
Loading…
Reference in New Issue