From e180e3a496d6f29d3a3b34016400de9d997c6bd9 Mon Sep 17 00:00:00 2001
From: liusheng <337615773@qq.com>
Date: 星期二, 07 四月 2026 14:42:23 +0800
Subject: [PATCH] 省立同德满意度功能提交
---
smartor/src/main/resources/mapper/smartor/SvyLibScriptOptionMapper.xml | 11 ++++++++---
1 files changed, 8 insertions(+), 3 deletions(-)
diff --git a/smartor/src/main/resources/mapper/smartor/SvyLibScriptOptionMapper.xml b/smartor/src/main/resources/mapper/smartor/SvyLibScriptOptionMapper.xml
index d76942c..70fd431 100644
--- a/smartor/src/main/resources/mapper/smartor/SvyLibScriptOptionMapper.xml
+++ b/smartor/src/main/resources/mapper/smartor/SvyLibScriptOptionMapper.xml
@@ -35,6 +35,7 @@
<result property="createTime" column="create_time"/>
<result property="updateBy" column="update_by"/>
<result property="updateTime" column="update_time"/>
+ <result property="isException" column="is_exception"/>
<result property="isupload" column="isupload"/>
<result property="uploadTime" column="upload_time"/>
<result property="appendflag" column="appendflag"/>
@@ -77,6 +78,7 @@
update_by,
update_time,
isupload,
+ is_exception,
upload_time
from svy_lib_scriptoption
</sql>
@@ -84,8 +86,8 @@
<select id="selectSvyLibScriptOptionList" parameterType="com.smartor.domain.SvyLibScriptOption"
resultMap="SvyLibScriptOptionResult">
<include refid="selectSvyLibScriptOptionVo"/>
- <where>
- del_flag=0
+ where 1=1
+ and del_flag = 0
<if test="topicid != null ">and topicid = #{topicid}</if>
<if test="svyid != null ">and svyid = #{svyid}</if>
<if test="topictype != null ">and topictype = #{topictype}</if>
@@ -114,7 +116,7 @@
<if test="appendflag != null">and appendflag = #{appendflag}</if>
<if test="appenddesc != null">and appenddesc = #{appenddesc}</if>
<if test="picturePath != null">and picture_path = #{picturePath}</if>
- </where>
+ <if test="isException != null">and is_exception = #{isException}</if>
</select>
<select id="selectSvyLibScriptOptionByOptionid" parameterType="Long" resultMap="SvyLibScriptOptionResult">
@@ -160,6 +162,7 @@
<if test="appenddesc != null">appenddesc,</if>
<if test="picturePath != null">picture_path,</if>
<if test="guid != null">guid,</if>
+ <if test="isException != null">is_exception,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="topicid != null">#{topicid},</if>
@@ -196,6 +199,7 @@
<if test="appenddesc != null">#{appenddesc},</if>
<if test="picturePath != null">#{picturePath},</if>
<if test="guid != null">#{guid},</if>
+ <if test="isException != null">#{isException},</if>
</trim>
</insert>
@@ -235,6 +239,7 @@
<if test="appendflag != null">appendflag = #{appendflag},</if>
<if test="appenddesc != null">appenddesc = #{appenddesc},</if>
<if test="picturePath != null">picture_path = #{picturePath},</if>
+ <if test="isException != null">is_exception = #{isException},</if>
</trim>
where id = #{id}
</update>
--
Gitblit v1.9.3