From 987e38327f849e1b13d8541246dde08d877db0e8 Mon Sep 17 00:00:00 2001
From: 陈昶聿 <chychen@nbjetron.com>
Date: 星期三, 07 一月 2026 14:10:43 +0800
Subject: [PATCH] 【市一】调整mapper获取ordid

---
 smartor/src/main/resources/mapper/smartor/BaseTagMapper.xml |    4 ----
 1 files changed, 0 insertions(+), 4 deletions(-)

diff --git a/smartor/src/main/resources/mapper/smartor/BaseTagMapper.xml b/smartor/src/main/resources/mapper/smartor/BaseTagMapper.xml
index 838fd9d..ef30b37 100644
--- a/smartor/src/main/resources/mapper/smartor/BaseTagMapper.xml
+++ b/smartor/src/main/resources/mapper/smartor/BaseTagMapper.xml
@@ -42,7 +42,6 @@
     <select id="selectBaseTagList" parameterType="com.smartor.domain.BaseTag" resultMap="BaseTagResult">
         <include refid="selectBaseTagVo"/>
         WHERE 1=1
-
             <if test="tagcategoryid != null ">and tagcategoryid = #{tagcategoryid}</if>
             <if test="tagname != null  and tagname != ''">and tagname like concat('%', #{tagname}, '%')</if>
             <if test="tagdescription != null  and tagdescription != ''">and tagdescription = #{tagdescription}</if>
@@ -50,12 +49,10 @@
             <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>
-        
     </select>
     <select id="selectBaseTagListByTagname" parameterType="com.smartor.domain.BaseTag" resultMap="BaseTagResult">
         <include refid="selectBaseTagVo"/>
         WHERE 1=1
-
             <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>
@@ -63,7 +60,6 @@
             <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>
-        
     </select>
 
     <select id="selectBaseTagByTagid" parameterType="Long" resultMap="BaseTagResult">

--
Gitblit v1.9.3