From 196829a351cac0c7504a16e314c6f1169d1149e7 Mon Sep 17 00:00:00 2001
From: liusheng <337615773@qq.com>
Date: 星期二, 13 六月 2023 10:19:54 +0800
Subject: [PATCH] 批量上传题库

---
 smartor/src/main/resources/mapper/smartor/SvyLibTopicMapper.xml |   11 +++--------
 1 files changed, 3 insertions(+), 8 deletions(-)

diff --git a/smartor/src/main/resources/mapper/smartor/SvyLibTopicMapper.xml b/smartor/src/main/resources/mapper/smartor/SvyLibTopicMapper.xml
index 6f3ec11..e2cb1e5 100644
--- a/smartor/src/main/resources/mapper/smartor/SvyLibTopicMapper.xml
+++ b/smartor/src/main/resources/mapper/smartor/SvyLibTopicMapper.xml
@@ -4,7 +4,7 @@
 "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
 <mapper namespace="com.smartor.mapper.SvyLibTopicMapper">
     
-    <resultMap type="SvyLibTopic" id="SvyLibTopicResult">
+    <resultMap type="com.smartor.domain.SvyLibTopic" id="SvyLibTopicResult">
         <result property="topicid"    column="topicid"    />
         <result property="oldid"    column="oldid"    />
         <result property="svyid"    column="svyid"    />
@@ -22,26 +22,21 @@
         <result property="updateTime"    column="update_time"    />
         <result property="isupload"    column="isupload"    />
         <result property="uploadTime"    column="upload_time"    />
+        <result property="tag"    column="tag"    />
     </resultMap>
 
     <sql id="selectSvyLibTopicVo">
-        select topicid, oldid, svyid, topictype, topiccode, topic, sort, ismandatory, ishide, del_flag, orgid, create_by, create_time, update_by, update_time, isupload, upload_time from svy_lib_topic
+        select topicid, oldid, svyid, topictype, topiccode, topic, sort, ismandatory, ishide, del_flag, orgid, create_by, create_time, update_by, update_time, isupload, upload_time,tag from svy_lib_topic
     </sql>
 
     <select id="selectSvyLibTopicList" parameterType="SvyLibTopic" resultMap="SvyLibTopicResult">
         <include refid="selectSvyLibTopicVo"/>
         <where>  
             <if test="oldid != null "> and oldid = #{oldid}</if>
-            <if test="svyid != null "> and svyid = #{svyid}</if>
             <if test="topictype != null "> and topictype = #{topictype}</if>
-            <if test="topiccode != null  and topiccode != ''"> and topiccode = #{topiccode}</if>
             <if test="topic != null  and topic != ''"> and topic = #{topic}</if>
-            <if test="sort != null "> and sort = #{sort}</if>
-            <if test="ismandatory != null "> and ismandatory = #{ismandatory}</if>
             <if test="ishide != null "> and ishide = #{ishide}</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>
         </where>
     </select>
     

--
Gitblit v1.9.3