From 9c8c9675325a22c69ac113ab26f9285b60582ae1 Mon Sep 17 00:00:00 2001
From: liusheng <337615773@qq.com>
Date: 星期二, 09 七月 2024 10:10:26 +0800
Subject: [PATCH] 代码提交
---
smartor/src/main/resources/mapper/smartor/SvyLibTemplateTargetoptionMapper.xml | 12 ++++++++++++
1 files changed, 12 insertions(+), 0 deletions(-)
diff --git a/smartor/src/main/resources/mapper/smartor/SvyLibTemplateTargetoptionMapper.xml b/smartor/src/main/resources/mapper/smartor/SvyLibTemplateTargetoptionMapper.xml
index 220ac30..ef5b727 100644
--- a/smartor/src/main/resources/mapper/smartor/SvyLibTemplateTargetoptionMapper.xml
+++ b/smartor/src/main/resources/mapper/smartor/SvyLibTemplateTargetoptionMapper.xml
@@ -37,12 +37,16 @@
<result property="guid" column="guid"/>
<result property="picturePath" column="picture_path"/>
<result property="score" column="score"/>
+ <result property="appendflag" column="appendflag"/>
+ <result property="appenddesc" column="appenddesc"/>
</resultMap>
<sql id="selectSvyLibTemplateTargetoptionVo">
select id,
groupid,
score,
+ appendflag,
+ appenddesc,
categoryName,
scriptid,
templateID,
@@ -97,6 +101,8 @@
<if test="guid != null and guid != ''">and guid = #{guid}</if>
<if test="score != null and score != ''">and score = #{score}</if>
<if test="picturePath != null and picturePath != ''">and picture_path = #{picturePath}</if>
+ <if test="appendflag != null">and appendflag = #{appendflag}</if>
+ <if test="appenddesc != null">and appenddesc = #{appenddesc}</if>
</where>
</select>
@@ -140,6 +146,8 @@
<if test="guid != null">guid,</if>
<if test="picturePath != null">picture_path,</if>
<if test="score != null">score,</if>
+ <if test="appendflag != null">appendflag,</if>
+ <if test="appenddesc != null">appenddesc,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="groupid != null">#{groupid},</if>
@@ -173,6 +181,8 @@
<if test="guid != null">#{guid},</if>
<if test="picturePath != null">#{picturePath},</if>
<if test="score != null">#{score},</if>
+ <if test="appendflag != null">#{appendflag},</if>
+ <if test="appenddesc != null">#{appenddesc},</if>
</trim>
</insert>
@@ -210,6 +220,8 @@
<if test="guid != null">guid = #{guid},</if>
<if test="picturePath != null">picture_path = #{picturePath},</if>
<if test="score != null">score = #{score},</if>
+ <if test="appendflag != null">appendflag = #{appendflag},</if>
+ <if test="appenddesc != null">appenddesc = #{appenddesc},</if>
</trim>
where id = #{id}
</update>
--
Gitblit v1.9.3