From 2d998d6202d0c04246c885c92c24048bedd938dd Mon Sep 17 00:00:00 2001 From: Suomm <1474983351@qq.com> Date: Wed, 9 Aug 2023 16:33:35 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20Lambda=20=E6=94=AF=E6=8C=81=20set=20joi?= =?UTF-8?q?n=20=E5=88=97=E7=9A=84=E5=80=BC=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/mybatisflex/core/update/UpdateChain.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mybatis-flex-core/src/main/java/com/mybatisflex/core/update/UpdateChain.java b/mybatis-flex-core/src/main/java/com/mybatisflex/core/update/UpdateChain.java index f8192e4d..99dc62e6 100644 --- a/mybatis-flex-core/src/main/java/com/mybatisflex/core/update/UpdateChain.java +++ b/mybatis-flex-core/src/main/java/com/mybatisflex/core/update/UpdateChain.java @@ -92,12 +92,12 @@ public class UpdateChain extends QueryWrapperAdapter> { return this; } - public UpdateChain set(LambdaGetter getter, Object value, boolean condition) { + public UpdateChain set(LambdaGetter getter, Object value, boolean condition) { entityWrapper.set(getter, value, condition); return this; } - public UpdateChain set(LambdaGetter getter, Object value) { + public UpdateChain set(LambdaGetter getter, Object value) { entityWrapper.set(getter, value); return this; } @@ -123,12 +123,12 @@ public class UpdateChain extends QueryWrapperAdapter> { return this; } - public UpdateChain setRaw(LambdaGetter getter, Object value, boolean condition) { + public UpdateChain setRaw(LambdaGetter getter, Object value, boolean condition) { entityWrapper.setRaw(getter, value, condition); return this; } - public UpdateChain setRaw(LambdaGetter getter, Object value) { + public UpdateChain setRaw(LambdaGetter getter, Object value) { entityWrapper.setRaw(getter, value); return this; }