mirror of https://gitee.com/makejava/EasyCode.git
Revert "insertOrUpdateBatch方法更新javadoc,提醒入参是空List的时候会抛SQL语句错误的异常"
This commit is contained in:
parent
a14f913ed6
commit
5c85213f62
|
@ -70,7 +70,6 @@ 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,7 +33,6 @@ 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