From 52d4a9062da02549a076ab572de341ae3d80a372 Mon Sep 17 00:00:00 2001 From: wangyu <727842003@qq.com> Date: Tue, 27 Sep 2022 11:00:43 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=8D=87=E7=BA=A70.0.4=EF=BC=8C?= =?UTF-8?q?=E5=AE=8C=E6=88=90objectMapper=E4=BC=98=E5=8C=96=EF=BC=8C?= =?UTF-8?q?=E6=9F=A5=E8=AF=A2=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../fluent/operations/JdbcTemplateFluentSQLOperations.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fluent-sql-spring-jdbc/src/main/java/group/flyfish/fluent/operations/JdbcTemplateFluentSQLOperations.java b/fluent-sql-spring-jdbc/src/main/java/group/flyfish/fluent/operations/JdbcTemplateFluentSQLOperations.java index 1c211f6..94d4e12 100644 --- a/fluent-sql-spring-jdbc/src/main/java/group/flyfish/fluent/operations/JdbcTemplateFluentSQLOperations.java +++ b/fluent-sql-spring-jdbc/src/main/java/group/flyfish/fluent/operations/JdbcTemplateFluentSQLOperations.java @@ -64,7 +64,7 @@ public class JdbcTemplateFluentSQLOperations implements FluentSQLOperations { if (ClassUtils.isPrimitiveOrWrapper(clazz)) { return jdbcOperations.queryForList(sql, clazz, entity.getParameters()); } - return jdbcOperations.query(entity.getSql(), new SQLMappedRowMapper<>(clazz), entity.getParameters()); + return jdbcOperations.query(sql, new SQLMappedRowMapper<>(clazz), entity.getParameters()); } /**