From 50d06fac81b2125292449a2eb29eba7e3f933b31 Mon Sep 17 00:00:00 2001
From: xuhy <3313886187@qq.com>
Date: 星期三, 03 九月 2025 18:51:28 +0800
Subject: [PATCH] 修改

---
 manage/src/main/resources/mapping/TStoreMapper.xml |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/manage/src/main/resources/mapping/TStoreMapper.xml b/manage/src/main/resources/mapping/TStoreMapper.xml
index 7a6f991..bee887d 100644
--- a/manage/src/main/resources/mapping/TStoreMapper.xml
+++ b/manage/src/main/resources/mapping/TStoreMapper.xml
@@ -32,14 +32,13 @@
         from t_store
         <where>
             <if test="query.name != null and query.name != ''">
-                and `name` like concat('%',#{name},'%')
+                and `name` like concat('%',#{query.name},'%')
             </if>
             <if test="query.status != null">
                 and `status` = #{query.status}
             </if>
             AND isDelete = ${@com.jilongda.common.enums.DisabledEnum@NO.getCode()}
         </where>
-        ORDER BY createTime DESC
     </select>
 
 </mapper>

--
Gitblit v1.7.1