From 439dafad3853aff4cf070aaf5d9bfbc7d3d1050c Mon Sep 17 00:00:00 2001
From: zyy <zyy@email.com>
Date: Thu, 24 Jul 2025 16:41:43 +0800
Subject: [PATCH] 更新key
---
src/main/resources/mapper/StockMapper.xml | 7 ++++++-
1 files changed, 6 insertions(+), 1 deletions(-)
diff --git a/src/main/resources/mapper/StockMapper.xml b/src/main/resources/mapper/StockMapper.xml
index a19f47f..d0c99be 100644
--- a/src/main/resources/mapper/StockMapper.xml
+++ b/src/main/resources/mapper/StockMapper.xml
@@ -319,7 +319,7 @@
<include refid="Base_Column_List"/>
FROM stock
- where stock_spell not like '%.st%'
+ where stock_spell not like '%.st%' and stock_gid !='indices'
<if test="stockType != null and stockType != '' ">
and stock_type = #{stockType}
</if>
@@ -357,6 +357,11 @@
</if>
</select>
+ <select id="findStocksQuery" resultType="com.nq.vo.stock.StockVOQuery">
+ SELECT id,stock_name,stock_code,stock_spell,stock_type FROM stock
+ WHERE stock_spell like concat('%',#{keyWords},'%') or stock_name like concat('%',#{keyWords},'%')
+ or stock_code like concat('%',#{keyWords},'%')
+ </select>
</mapper>
--
Gitblit v1.9.3