From 907641e56c2085aaa81f267946dc3e3e9fca73e7 Mon Sep 17 00:00:00 2001 From: liusheng <337615773@qq.com> Date: 星期三, 18 九月 2024 09:39:02 +0800 Subject: [PATCH] 代码提交 --- smartor/src/main/resources/mapper/smartor/HeLibraryMapper.xml | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/smartor/src/main/resources/mapper/smartor/HeLibraryMapper.xml b/smartor/src/main/resources/mapper/smartor/HeLibraryMapper.xml index 69f4dec..7d8f875 100644 --- a/smartor/src/main/resources/mapper/smartor/HeLibraryMapper.xml +++ b/smartor/src/main/resources/mapper/smartor/HeLibraryMapper.xml @@ -39,12 +39,14 @@ <result property="otherdata" column="otherdata"/> <result property="richText" column="rich_text"/> <result property="hetype" column="hetype"/> + <result property="htmlRichText" column="html_rich_text"/> </resultMap> <sql id="selectHeLibraryVo"> select id, classification, hetype, + html_rich_text, assortid, preachname, version, @@ -115,6 +117,7 @@ <if test="campus != null and campus != ''">and campus = #{campus}</if> <if test="richText != null and richText != ''">and rich_text = #{richText}</if> <if test="hetype != null and hetype != ''">and hetype = #{hetype}</if> + <if test="htmlRichText != null and htmlRichText != ''">and html_rich_text = #{htmlRichText}</if> </where> </select> @@ -159,6 +162,7 @@ <if test="otherdata != null">otherdata,</if> <if test="richText != null and richText != ''">rich_text,</if> <if test="hetype != null and hetype != ''">hetype,</if> + <if test="htmlRichText != null and htmlRichText != ''">html_rich_text,</if> </trim> <trim prefix="values (" suffix=")" suffixOverrides=","> <if test="classification != null">#{classification},</if> @@ -194,6 +198,7 @@ <if test="otherdata != null">#{otherdata},</if> <if test="richText != null and richText != ''">#{richText},</if> <if test="hetype != null and hetype != ''">#{hetype},</if> + <if test="htmlRichText != null and htmlRichText != ''">#{htmlRichText},</if> </trim> </insert> @@ -233,6 +238,7 @@ <if test="otherdata != null">otherdata = #{otherdata},</if> <if test="richText != null and richText != ''">rich_text = #{richText},</if> <if test="hetype != null and hetype != ''">hetype = #{hetype},</if> + <if test="htmlRichText != null and htmlRichText != ''">html_rich_text = #{htmlRichText},</if> </trim> where id = #{id} </update> -- Gitblit v1.9.3