mirror of
https://gitee.com/mybatis-flex/mybatis-flex.git
synced 2025-12-07 00:58:24 +08:00
fix: 方法指向错误。
This commit is contained in:
parent
3c6a3ca6a6
commit
73b2da97f5
@ -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;
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user