From 0123a0bd06f83a2a973023bb2f197e21118ef293 Mon Sep 17 00:00:00 2001 From: liusheng <337615773@qq.com> Date: 星期二, 23 七月 2024 18:31:32 +0800 Subject: [PATCH] 代码提交 --- smartor/src/main/resources/mapper/smartor/SvyTaskTemplateScriptMapper.xml | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/smartor/src/main/resources/mapper/smartor/SvyTaskTemplateScriptMapper.xml b/smartor/src/main/resources/mapper/smartor/SvyTaskTemplateScriptMapper.xml index e7b6a7a..a8c516e 100644 --- a/smartor/src/main/resources/mapper/smartor/SvyTaskTemplateScriptMapper.xml +++ b/smartor/src/main/resources/mapper/smartor/SvyTaskTemplateScriptMapper.xml @@ -27,7 +27,7 @@ <result property="guid" column="guid"/> <result property="valueType" column="value_type"/> <result property="targetOptions" column="targetOptions"/> - <result property="targettype" column="targettype"/> + <result property="scriptType" column="script_type"/> <result property="targetid" column="targetid"/> <result property="targetvalue" column="targetvalue"/> <result property="nextScriptno" column="next_scriptno"/> @@ -51,7 +51,7 @@ scriptno, templateID, scriptid, - script_topic, language, categoryName, script_content, is_must, del_flag, update_by, update_time, create_by, create_time, isupload, upload_time, orgid, pid, guid, value_type, targetOptions, targettype, targetid, targetvalue, next_scriptno, script_result, otherdata, picture_path + script_topic, language, categoryName, script_content, is_must, del_flag, update_by, update_time, create_by, create_time, isupload, upload_time, orgid, pid, guid, value_type, targetOptions, script_type, targetid, targetvalue, next_scriptno, script_result, otherdata, picture_path from svy_task_template_script </sql> @@ -77,7 +77,7 @@ <if test="guid != null and guid != ''">and guid = #{guid}</if> <if test="valueType != null ">and value_type = #{valueType}</if> <if test="targetOptions != null and targetOptions != ''">and targetOptions = #{targetOptions}</if> - <if test="targettype != null and targettype != ''">and targettype = #{targettype}</if> + <if test="scriptType != null and scriptType != ''">and script_type = #{scriptType}</if> <if test="targetid != null ">and targetid = #{targetid}</if> <if test="targetvalue != null and targetvalue != ''">and targetvalue = #{targetvalue}</if> <if test="nextScriptno != null ">and next_scriptno = #{nextScriptno}</if> @@ -122,7 +122,7 @@ <if test="guid != null">guid,</if> <if test="valueType != null">value_type,</if> <if test="targetOptions != null">targetOptions,</if> - <if test="targettype != null">targettype,</if> + <if test="scriptType != null">script_type,</if> <if test="targetid != null">targetid,</if> <if test="targetvalue != null">targetvalue,</if> <if test="nextScriptno != null">next_scriptno,</if> @@ -156,7 +156,7 @@ <if test="guid != null">#{guid},</if> <if test="valueType != null">#{valueType},</if> <if test="targetOptions != null">#{targetOptions},</if> - <if test="targettype != null">#{targettype},</if> + <if test="scriptType != null">#{scriptType},</if> <if test="targetid != null">#{targetid},</if> <if test="targetvalue != null">#{targetvalue},</if> <if test="nextScriptno != null">#{nextScriptno},</if> @@ -194,7 +194,7 @@ <if test="guid != null">guid = #{guid},</if> <if test="valueType != null">value_type = #{valueType},</if> <if test="targetOptions != null">targetOptions = #{targetOptions},</if> - <if test="targettype != null">targettype = #{targettype},</if> + <if test="scriptType != null">script_type = #{scriptType},</if> <if test="targetid != null">targetid = #{targetid},</if> <if test="targetvalue != null">targetvalue = #{targetvalue},</if> <if test="nextScriptno != null">next_scriptno = #{nextScriptno},</if> -- Gitblit v1.9.3