From ed4f30cb2c05929ae99bc8aa4f981f68e1dfadab Mon Sep 17 00:00:00 2001 From: ruansheng Date: Fri, 21 Nov 2025 17:13:52 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20-m=20core=20=E6=96=B0=E5=A2=9EgetQueryC?= =?UTF-8?q?olumn=E6=96=B9=E6=B3=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/java/com/mybatisflex/core/query/QueryOrderBy.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mybatis-flex-core/src/main/java/com/mybatisflex/core/query/QueryOrderBy.java b/mybatis-flex-core/src/main/java/com/mybatisflex/core/query/QueryOrderBy.java index 319a9747..371d2570 100644 --- a/mybatis-flex-core/src/main/java/com/mybatisflex/core/query/QueryOrderBy.java +++ b/mybatis-flex-core/src/main/java/com/mybatisflex/core/query/QueryOrderBy.java @@ -66,6 +66,9 @@ public class QueryOrderBy implements CloneSupport { return this; } + public QueryColumn getQueryColumn() { + return this.queryColumn; + } public String toSql(List queryTables, IDialect dialect) { String sql = queryColumn.toConditionSql(queryTables, dialect) + orderType;