From 59aed09c5faffa1ef7a8ade34f5a75fcb3877dcf Mon Sep 17 00:00:00 2001 From: zhanghua <314079846@qq.com> Date: 星期三, 02 七月 2025 23:23:01 +0800 Subject: [PATCH] 会员标签 --- framework/src/main/resources/mapper/lmk/TagMapper.xml | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/framework/src/main/resources/mapper/lmk/TagMapper.xml b/framework/src/main/resources/mapper/lmk/TagMapper.xml index c8ceb7f..64261aa 100644 --- a/framework/src/main/resources/mapper/lmk/TagMapper.xml +++ b/framework/src/main/resources/mapper/lmk/TagMapper.xml @@ -20,7 +20,10 @@ and t.tag_name like concat('%',#{query.tagName},'%') </if> <if test="query.tagTypeId != null and query.tagTypeId != ''"> - and t.tag_type_id like concat('%',#{query.tagTypeId},'%') + and t.tag_type_id = #{query.tagTypeId} + </if> + <if test="query.tagTypeKey != null and query.tagTypeKey != ''"> + and tt.type_key = #{query.tagTypeKey} </if> order by t.sort_num </select> -- Gitblit v1.8.0