From 73b2da97f5b8adf5127be1fab48629e9b3852ffe Mon Sep 17 00:00:00 2001 From: Suomm <1474983351@qq.com> Date: Thu, 17 Aug 2023 09:57:48 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=96=B9=E6=B3=95=E6=8C=87=E5=90=91?= =?UTF-8?q?=E9=94=99=E8=AF=AF=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/java/com/mybatisflex/core/row/DbChain.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; }