From ff1be70b35a043a42ef7471c3ed9f10a9a736db0 Mon Sep 17 00:00:00 2001 From: 无关风月 <443237572@qq.com> Date: 星期四, 09 一月 2025 14:33:04 +0800 Subject: [PATCH] bug修改 --- 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