From 0b193b98347b5563e59492d8f57eba8f67af6d23 Mon Sep 17 00:00:00 2001
From: liusheng <337615773@qq.com>
Date: 星期二, 27 六月 2023 11:35:54 +0800
Subject: [PATCH] 新增题目

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

diff --git a/smartor/src/main/resources/mapper/smartor/SvyLibTopicMapper.xml b/smartor/src/main/resources/mapper/smartor/SvyLibTopicMapper.xml
index 309bf11..d72d610 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,13 +22,14 @@
         <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">
+    <select id="selectSvyLibTopicList" parameterType="com.smartor.domain.SvyLibTopic" resultMap="SvyLibTopicResult">
         <include refid="selectSvyLibTopicVo"/>
         <where>  
             <if test="oldid != null "> and oldid = #{oldid}</if>
@@ -44,7 +45,7 @@
         where topicid = #{topicid}
     </select>
         
-    <insert id="insertSvyLibTopic" parameterType="SvyLibTopic" useGeneratedKeys="true" keyProperty="topicid">
+    <insert id="insertSvyLibTopic" parameterType="com.smartor.domain.SvyLibTopic" useGeneratedKeys="true" keyProperty="topicid">
         insert into svy_lib_topic
         <trim prefix="(" suffix=")" suffixOverrides=",">
             <if test="oldid != null">oldid,</if>
@@ -63,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>
@@ -81,10 +83,11 @@
             <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>
 
-    <update id="updateSvyLibTopic" parameterType="SvyLibTopic">
+    <update id="updateSvyLibTopic" parameterType="com.smartor.domain.SvyLibTopic">
         update svy_lib_topic
         <trim prefix="SET" suffixOverrides=",">
             <if test="oldid != null">oldid = #{oldid},</if>
@@ -117,4 +120,6 @@
             #{topicid}
         </foreach>
     </delete>
+
+
 </mapper>
\ No newline at end of file

--
Gitblit v1.9.3