diff --git a/mybatis-flex-core/src/main/java/com/mybatisflex/core/row/DbChain.java b/mybatis-flex-core/src/main/java/com/mybatisflex/core/row/DbChain.java index a65d5528..4f6d3feb 100644 --- a/mybatis-flex-core/src/main/java/com/mybatisflex/core/row/DbChain.java +++ b/mybatis-flex-core/src/main/java/com/mybatisflex/core/row/DbChain.java @@ -129,19 +129,19 @@ public class DbChain extends QueryWrapperAdapter 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 DbChain setRaw(LambdaGetter property, Object value, boolean isEffective) { - getRow().set(property, value, isEffective); + getRow().setRaw(property, value, isEffective); return this; }