From a0bcee3aa22b79f592c44cdb3dcdbd681490f265 Mon Sep 17 00:00:00 2001
From: liusheng <337615773@qq.com>
Date: 星期一, 15 一月 2024 10:34:31 +0800
Subject: [PATCH] 代码提交

---
 smartor/src/main/resources/mapper/smartor/IvrLibaScriptMapper.xml |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/smartor/src/main/resources/mapper/smartor/IvrLibaScriptMapper.xml b/smartor/src/main/resources/mapper/smartor/IvrLibaScriptMapper.xml
index 46ab1a4..231ff66 100644
--- a/smartor/src/main/resources/mapper/smartor/IvrLibaScriptMapper.xml
+++ b/smartor/src/main/resources/mapper/smartor/IvrLibaScriptMapper.xml
@@ -40,7 +40,7 @@
         <result property="orgid" column="orgid"/>
         <result property="pid" column="pid"/>
         <result property="guid" column="guid"/>
-        <result property="parameter" column="parameter"/>
+        <result property="otherdata" column="otherdata"/>
         <result property="suitway" column="suitway"/>
         <result property="isAvailable" column="isAvailable"/>
         <result property="campus" column="campus"/>
@@ -72,7 +72,7 @@
                targetid,
                targetname,
                tag,
-               targetoptions, language, remark, version, usestate, adduserid, addtime, modifyuserid, modifytime, assortid, del_flag, update_by, update_time, create_by, create_time, isupload, upload_time, orgid, pid, guid, parameter
+               targetoptions, language, remark, version, usestate, adduserid, addtime, modifyuserid, modifytime, assortid, del_flag, update_by, update_time, create_by, create_time, isupload, upload_time, orgid, pid, guid, otherdata
         from ivr_liba_script
     </sql>
 
@@ -116,7 +116,7 @@
             <if test="orgid != null  and orgid != ''">and orgid = #{orgid}</if>
             <if test="pid != null ">and pid = #{pid}</if>
             <if test="guid != null  and guid != ''">and guid = #{guid}</if>
-            <if test="parameter != null  and parameter != ''">and parameter = #{parameter}</if>
+            <if test="otherdata != null  and otherdata != ''">and otherdata = #{otherdata}</if>
         </where>
     </select>
 
@@ -170,7 +170,7 @@
             <if test="orgid != null">orgid,</if>
             <if test="pid != null">pid,</if>
             <if test="guid != null">guid,</if>
-            <if test="parameter != null">parameter,</if>
+            <if test="otherdata != null">otherdata,</if>
         </trim>
         <trim prefix="values (" suffix=")" suffixOverrides=",">
             <if test="questiontitle != null">#{questiontitle},</if>
@@ -214,7 +214,7 @@
             <if test="orgid != null">#{orgid},</if>
             <if test="pid != null">#{pid},</if>
             <if test="guid != null">#{guid},</if>
-            <if test="parameter != null">#{parameter},</if>
+            <if test="otherdata != null">#{otherdata},</if>
         </trim>
     </insert>
 
@@ -258,7 +258,7 @@
             <if test="orgid != null">orgid = #{orgid},</if>
             <if test="pid != null">pid = #{pid},</if>
             <if test="guid != null">guid = #{guid},</if>
-            <if test="parameter != null">parameter = #{parameter},</if>
+            <if test="otherdata != null and otherdata != ''">otherdata = #{otherdata},</if>
             <if test="deptNames != null">deptNames = #{deptNames},</if>
             <if test="deptIds != null">deptIds = #{deptIds},</if>
             <if test="campus != null">campus = #{campus},</if>

--
Gitblit v1.9.3