From 2c94ab41c8f7982034a8edd2076b1b665ac67a42 Mon Sep 17 00:00:00 2001 From: zp <352846425@qq.com> Date: Fri, 26 Mar 2021 15:55:38 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A4=A9=E9=A6=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../fund/mapper/generator/custom/FundInfoCustomMapper.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/tanpu/fund/mapper/generator/custom/FundInfoCustomMapper.java b/src/main/java/com/tanpu/fund/mapper/generator/custom/FundInfoCustomMapper.java index 9dc5afb..0795d02 100644 --- a/src/main/java/com/tanpu/fund/mapper/generator/custom/FundInfoCustomMapper.java +++ b/src/main/java/com/tanpu/fund/mapper/generator/custom/FundInfoCustomMapper.java @@ -55,6 +55,6 @@ public interface FundInfoCustomMapper { @Select("select t.id as id, t.fund_name as `value` from ifa_imported_fund_info t where t.id in(${list})") List<Type> getSimplePrivateFundList(@Param("list") String list); - @Select("select t.id as id,t.fund_short_name as value from tx_fund_info t where t.fund_short_name like #{productName}") + @Select("select t.id as id,t.fund_short_name as value from fund_info t where t.fund_short_name like #{productName}") List<Type> getFundInfoLikeName(@Param("productName") String productName); } -- 2.18.1