From 77d7257c02fc811a53b8d9207e4239f69c8a600c Mon Sep 17 00:00:00 2001
From: liusheng <337615773@qq.com>
Date: 星期四, 15 六月 2023 14:33:36 +0800
Subject: [PATCH] 题目和标签代码提交

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

diff --git a/smartor/src/main/resources/mapper/smartor/SvyLibTopicMapper.xml b/smartor/src/main/resources/mapper/smartor/SvyLibTopicMapper.xml
index e2cb1e5..d02d1fc 100644
--- a/smartor/src/main/resources/mapper/smartor/SvyLibTopicMapper.xml
+++ b/smartor/src/main/resources/mapper/smartor/SvyLibTopicMapper.xml
@@ -64,6 +64,7 @@
             <if test="updateTime != null">update_time,</if>
             <if test="isupload != null">isupload,</if>
             <if test="uploadTime != null">upload_time,</if>
+            <if test="tag != null">tag,</if>
          </trim>
         <trim prefix="values (" suffix=")" suffixOverrides=",">
             <if test="oldid != null">#{oldid},</if>
@@ -82,6 +83,7 @@
             <if test="updateTime != null">#{updateTime},</if>
             <if test="isupload != null">#{isupload},</if>
             <if test="uploadTime != null">#{uploadTime},</if>
+            <if test="tag != null">#{tag},</if>
          </trim>
     </insert>
 
@@ -118,4 +120,22 @@
             #{topicid}
         </foreach>
     </delete>
+
+    <select id="showTopic" resultType="com.smartor.domain.SvyLibTopicAndOptionRes"
+            parameterType="com.smartor.domain.SvyTopicReq">
+        SELECT a.topicid, a.topiccode, a.topic, a.topictype, a.tag, b.optioncode, b.optioncontent
+        FROM svy_lib_topic a,
+        svy_lib_topicoption b
+        WHERE a.topicid = b.topicid
+        <if test="topic != null and topic != ''">
+            and a.topic LIKE concat('%', #{topic}, '%')
+        </if>
+        <if test="topicType != null and topicType != ''">
+            and a.topictype = #{topicType}
+        </if>
+        <if test="tag != null and tag != ''">
+            and a.tag LIKE concat('%', #{tag}, '%')
+        </if>
+        GROUP BY a.topic, b.optioncode
+    </select>
 </mapper>
\ No newline at end of file

--
Gitblit v1.9.3