From 9990ac7aae5264573c4db210d455b86c0001bb42 Mon Sep 17 00:00:00 2001
From: liusheng <337615773@qq.com>
Date: 星期二, 18 三月 2025 13:39:11 +0800
Subject: [PATCH] 代码提交
---
smartor/src/main/resources/mapper/smartor/BaseTagMapper.xml | 12 ++++++++++++
1 files changed, 12 insertions(+), 0 deletions(-)
diff --git a/smartor/src/main/resources/mapper/smartor/BaseTagMapper.xml b/smartor/src/main/resources/mapper/smartor/BaseTagMapper.xml
index 87c93bb..f1e3884 100644
--- a/smartor/src/main/resources/mapper/smartor/BaseTagMapper.xml
+++ b/smartor/src/main/resources/mapper/smartor/BaseTagMapper.xml
@@ -51,6 +51,18 @@
<if test="isenable != null ">and isenable = #{isenable}</if>
</where>
</select>
+ <select id="selectBaseTagListByTagname" parameterType="com.smartor.domain.BaseTag" resultMap="BaseTagResult">
+ <include refid="selectBaseTagVo"/>
+ <where>
+ <if test="tagcategoryid != null ">and tagcategoryid = #{tagcategoryid}</if>
+ <if test="tagname != null and tagname != ''">and tagname =#{tagname}</if>
+ <if test="tagdescription != null and tagdescription != ''">and tagdescription = #{tagdescription}</if>
+ <if test="orgid != null and orgid != ''">and orgid = #{orgid}</if>
+ <if test="isupload != null ">and isupload = #{isupload}</if>
+ <if test="uploadTime != null ">and upload_time = #{uploadTime}</if>
+ <if test="isenable != null ">and isenable = #{isenable}</if>
+ </where>
+ </select>
<select id="selectBaseTagByTagid" parameterType="Long" resultMap="BaseTagResult">
<include refid="selectBaseTagVo"/>
--
Gitblit v1.9.3