fix: 方法指向错误。

This commit is contained in:
Suomm 2023-08-17 09:57:48 +08:00
parent 3c6a3ca6a6
commit 73b2da97f5

View File

@ -129,19 +129,19 @@ public class DbChain extends QueryWrapperAdapter<DbChain> implements PropertySet
@Override
public DbChain setRaw(String property, Object value, boolean isEffective) {
getRow().set(property, value, isEffective);
getRow().setRaw(property, value, isEffective);
return this;
}
@Override
public DbChain setRaw(QueryColumn property, Object value, boolean isEffective) {
getRow().set(property, value, isEffective);
getRow().setRaw(property, value, isEffective);
return this;
}
@Override
public <T> DbChain setRaw(LambdaGetter<T> property, Object value, boolean isEffective) {
getRow().set(property, value, isEffective);
getRow().setRaw(property, value, isEffective);
return this;
}