v1.4.1
This commit is contained in:
parent
2c3534fc05
commit
991a9c54fd
|
@ -11,7 +11,7 @@ public interface InsertBuilder<T extends SQLAction<?>> {
|
|||
|
||||
boolean isIgnore();
|
||||
|
||||
InsertBuilder setIgnore(boolean ignore);
|
||||
InsertBuilder<T> setIgnore(boolean ignore);
|
||||
|
||||
T setColumnNames(List<String> columnNames);
|
||||
|
||||
|
|
|
@ -30,7 +30,7 @@ public abstract class InsertBuilderImpl<T extends SQLAction<?>>
|
|||
}
|
||||
|
||||
@Override
|
||||
public InsertBuilder setIgnore(boolean ignore) {
|
||||
public InsertBuilder<T> setIgnore(boolean ignore) {
|
||||
this.ignore = ignore;
|
||||
return this;
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
name: AuLib
|
||||
main: com.io.yutian.aulib.AuLib
|
||||
version: 1.4
|
||||
version: 1.4.1
|
||||
author: SuperYuTian
|
Loading…
Reference in New Issue
Block a user