From efaaa2a43ec6b79f1472cab5fb2f91ffde5d476c Mon Sep 17 00:00:00 2001
From: zj <1772600164@qq.com>
Date: Thu, 24 Jul 2025 18:18:20 +0800
Subject: [PATCH] 1
---
src/main/resources/mapper/StockMapper.xml | 37 ++++++++++++++++++++-----------------
1 files changed, 20 insertions(+), 17 deletions(-)
diff --git a/src/main/resources/mapper/StockMapper.xml b/src/main/resources/mapper/StockMapper.xml
index dea23bb..e54c75f 100644
--- a/src/main/resources/mapper/StockMapper.xml
+++ b/src/main/resources/mapper/StockMapper.xml
@@ -262,6 +262,7 @@
<include refid="Base_Column_List" />
from stock
<where>
+ 1 = 1 and stock_spell not like '%.st%'
<if test="showState != null ">
and is_show = #{showState}
</if>
@@ -269,7 +270,7 @@
and is_lock = #{lockState}
</if>
<if test="code != null and code != '' ">
- and stock_code like CONCAT('%','${code}','%')
+ and stock_code like CONCAT('%','${code}','%') or stock_spell like CONCAT('%','${code}','%')
</if>
<if test="name != null and name != '' ">
and stock_name like CONCAT('%','${name}','%')
@@ -279,6 +280,9 @@
</if>
<if test="stockType != null and stockType != '' ">
and stock_type = #{stockType}
+ </if>
+ <if test="stockGid != null and stockGid != '' ">
+ and stock_gid = #{stockGid}
</if>
</where>
</select>
@@ -316,7 +320,7 @@
FROM stock
where stock_type = #{stockType}
-
+ and stock_spell not like '%.st%'
<if test="keyWords != null and keyWords != '' ">
and (stock_spell like concat('%',#{keyWords},'%') or stock_name like concat('%',#{keyWords},'%') )
</if>
@@ -329,27 +333,26 @@
</if>
</select>
- <select id="findStockTypeDz" resultMap="BaseResultMap" parameterType="map">
- select
- <include refid="Base_Column_List"/>
- FROM stock
+ <select id="findStockTypeDz" resultType="com.nq.pojo.StockDz" parameterType="map">
+ SELECT
+ *
+ FROM stock_dz
- where stock_type = #{stockType}
+ WHERE start_time < #{formatDate} AND end_time > #{formatDate}
<if test="keyWords != null and keyWords != '' ">
- and (stock_spell like concat('%',#{keyWords},'%') or stock_name like concat('%',#{keyWords},'%') )
+ AND (stock_spell LIKE #{keyWords} OR stock_name LIKE #{keyWords})
</if>
- and stock_code in(select stock_code from stock_dz)
-
- <if test="orderBy != null and orderBy == 'desc'" >
- order by increase_ratio desc
+ <if test="orderBy != null">
+ ORDER BY increase_ratio
+ <if test="orderBy == 'desc'">
+ DESC
+ </if>
+ <if test="orderBy == 'asc'">
+ ASC
+ </if>
</if>
- <if test="orderBy != null and orderBy == 'asc'" >
- order by increase_ratio asc
- </if>
-
-
</select>
--
Gitblit v1.9.3