From 2d1db09ab80b4f164ca9dd66b18d0992203fa417 Mon Sep 17 00:00:00 2001
From: liusheng <337615773@qq.com>
Date: 星期二, 21 十月 2025 14:43:39 +0800
Subject: [PATCH] 新增Orgid

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

diff --git a/smartor/src/main/resources/mapper/smartor/ServiceTaskMapper.xml b/smartor/src/main/resources/mapper/smartor/ServiceTaskMapper.xml
index 47d8fd3..5110723 100644
--- a/smartor/src/main/resources/mapper/smartor/ServiceTaskMapper.xml
+++ b/smartor/src/main/resources/mapper/smartor/ServiceTaskMapper.xml
@@ -33,6 +33,7 @@
         <result property="pid" column="pid"/>
         <result property="guid" column="guid"/>
         <result property="preachform" column="preachform"/>
+        <result property="preachformDesc" column="preachform_desc"/>
         <result property="sendType" column="send_type"/>
         <result property="sendState" column="send_state"/>
         <result property="hospType" column="hosp_type"/>
@@ -79,6 +80,7 @@
                text_param,
                templateid,
                templatename,
+               preachform_desc,
                labelinfo,
                count,
                executed,
@@ -235,6 +237,7 @@
         service_task.pid,
         service_task.guid,
         service_task.preachform,
+        service_task.preachform_desc,
         service_task.send_type,
         service_task.send_state,
         service_task.send_time_slot,
@@ -365,6 +368,7 @@
             <if test="pid != null">pid,</if>
             <if test="guid != null">guid,</if>
             <if test="preachform != null">preachform,</if>
+            <if test="preachformDesc != null">preachform_desc,</if>
             <if test="sendType != null">send_type,</if>
             <if test="sendState != null">send_state,</if>
             <if test="hospType != null  and hospType != ''">hosp_type,</if>
@@ -419,6 +423,7 @@
             <if test="pid != null">#{pid},</if>
             <if test="guid != null">#{guid},</if>
             <if test="preachform != null">#{preachform},</if>
+            <if test="preachformDesc != null">#{preachformDesc},</if>
             <if test="sendType != null">#{sendType},</if>
             <if test="sendState != null">#{sendState},</if>
             <if test="hospType != null  and hospType != ''">#{hospType},</if>
@@ -477,6 +482,7 @@
             <if test="pid != null">pid = #{pid},</if>
             <if test="guid != null">guid = #{guid},</if>
             <if test="preachform != null">preachform = #{preachform},</if>
+            <if test="preachformDesc != null">preachform_desc = #{preachformDesc},</if>
             <if test="sendType != null">send_type = #{sendType},</if>
             <if test="sendState != null">send_state = #{sendState},</if>
             <if test="hospType != null  and hospType != ''">hosp_type = #{hospType},</if>

--
Gitblit v1.9.3