From 4459f484d910a61d52bc19a79be36e6dd182aa1c Mon Sep 17 00:00:00 2001 From: yulichang <570810310@qq.com> Date: Sat, 14 Jan 2023 14:17:56 +0800 Subject: [PATCH] fix https://github.com/yulichang/mybatis-plus-join/issues/27 --- .../com/github/yulichang/wrapper/MPJAbstractLambdaWrapper.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mybatis-plus-join-core/src/main/java/com/github/yulichang/wrapper/MPJAbstractLambdaWrapper.java b/mybatis-plus-join-core/src/main/java/com/github/yulichang/wrapper/MPJAbstractLambdaWrapper.java index 4322cdf..b53b7ef 100644 --- a/mybatis-plus-join-core/src/main/java/com/github/yulichang/wrapper/MPJAbstractLambdaWrapper.java +++ b/mybatis-plus-join-core/src/main/java/com/github/yulichang/wrapper/MPJAbstractLambdaWrapper.java @@ -56,7 +56,7 @@ public abstract class MPJAbstractLambdaWrapper column, boolean isJoin, PrefixEnum prefixEnum) { Class entityClass = LambdaUtils.getEntityClass(column); - return getDefault(index, entityClass, isJoin, prefixEnum) + StringPool.DOT + getCache(column).getTagColumn(); + return getDefault(index, entityClass, isJoin, prefixEnum) + StringPool.DOT + getCache(column).getColumn(); } protected SelectCache getCache(SFunction fn) {