From 09e6dc3fb7266620fafb5e341808a8eb36e080a1 Mon Sep 17 00:00:00 2001
From: wlzboy <66905212@qq.com>
Date: 星期六, 13 十二月 2025 22:51:52 +0800
Subject: [PATCH] feat:增加企业微信消息提醒

---
 ruoyi-system/src/main/resources/mapper/system/SysTaskEmergencyMapper.xml |   22 +++++++++++++++++++++-
 1 files changed, 21 insertions(+), 1 deletions(-)

diff --git a/ruoyi-system/src/main/resources/mapper/system/SysTaskEmergencyMapper.xml b/ruoyi-system/src/main/resources/mapper/system/SysTaskEmergencyMapper.xml
index a7f2760..d5f526f 100644
--- a/ruoyi-system/src/main/resources/mapper/system/SysTaskEmergencyMapper.xml
+++ b/ruoyi-system/src/main/resources/mapper/system/SysTaskEmergencyMapper.xml
@@ -46,6 +46,11 @@
         <result property="dispatchSyncErrorMsg"    column="dispatch_sync_error_msg" />
         <result property="needResync"              column="need_resync"             />
         <result property="legacyServiceOrdNo"      column="legacy_service_ord_no"   />
+        <result property="legacyDispatchOrdNo"     column="legacy_dispatch_ord_no"  />
+        <result property="legacyServiceNsTime"     column="legacy_service_ns_time"  />
+        <result property="legacyDispatchNsTime"    column="legacy_dispatch_ns_time" />
+        <result property="legacyDispatchOrdClass"  column="legacy_dispatch_ord_class" />
+        <result property="legacyServiceOrdClass"   column="legacy_service_ord_class" />
         <result property="createTime"              column="create_time"             />
         <result property="updateTime"              column="update_time"             />
         <result property="createBy"                column="create_by"               />
@@ -60,7 +65,7 @@
                hospital_in_department_id, hospital_in_bed_number, hospital_in_address, hospital_in_longitude, 
                hospital_in_latitude, transfer_distance, transfer_price, passenger_contact, 
                passenger_phone, disease_ids, document_type_id, task_type_id, legacy_service_ord_id, legacy_dispatch_ord_id, 
-               sync_status, sync_time, sync_error_msg, dispatch_sync_status, dispatch_sync_time, dispatch_sync_error_msg, need_resync, legacy_service_ord_no,
+               sync_status, sync_time, sync_error_msg, dispatch_sync_status, dispatch_sync_time, dispatch_sync_error_msg, need_resync, legacy_service_ord_no, legacy_dispatch_ord_no, legacy_service_ns_time, legacy_dispatch_ns_time, legacy_dispatch_ord_class, legacy_service_ord_class,
                create_time, update_time, create_by, update_by
         from sys_task_emergency
     </sql>
@@ -118,6 +123,11 @@
             <if test="dispatchSyncErrorMsg != null">dispatch_sync_error_msg,</if>
             <if test="needResync != null">need_resync,</if>
             <if test="legacyServiceOrdNo != null">legacy_service_ord_no,</if>
+            <if test="legacyDispatchOrdNo != null">legacy_dispatch_ord_no,</if>
+            <if test="legacyServiceNsTime != null">legacy_service_ns_time,</if>
+            <if test="legacyDispatchNsTime != null">legacy_dispatch_ns_time,</if>
+            <if test="legacyDispatchOrdClass != null">legacy_dispatch_ord_class,</if>
+            <if test="legacyServiceOrdClass != null">legacy_service_ord_class,</if>
             <if test="createTime != null">create_time,</if>
             <if test="updateTime != null">update_time,</if>
             <if test="createBy != null">create_by,</if>
@@ -164,6 +174,11 @@
             <if test="dispatchSyncErrorMsg != null">#{dispatchSyncErrorMsg},</if>
             <if test="needResync != null">#{needResync},</if>
             <if test="legacyServiceOrdNo != null">#{legacyServiceOrdNo},</if>
+            <if test="legacyDispatchOrdNo != null">#{legacyDispatchOrdNo},</if>
+            <if test="legacyServiceNsTime != null">#{legacyServiceNsTime},</if>
+            <if test="legacyDispatchNsTime != null">#{legacyDispatchNsTime},</if>
+            <if test="legacyDispatchOrdClass != null">#{legacyDispatchOrdClass},</if>
+            <if test="legacyServiceOrdClass != null">#{legacyServiceOrdClass},</if>
             <if test="createTime != null">#{createTime},</if>
             <if test="updateTime != null">#{updateTime},</if>
             <if test="createBy != null">#{createBy},</if>
@@ -213,6 +228,11 @@
             <if test="dispatchSyncErrorMsg != null">dispatch_sync_error_msg = #{dispatchSyncErrorMsg},</if>
             <if test="needResync != null">need_resync = #{needResync},</if>
             <if test="legacyServiceOrdNo != null">legacy_service_ord_no = #{legacyServiceOrdNo},</if>
+            <if test="legacyDispatchOrdNo != null">legacy_dispatch_ord_no = #{legacyDispatchOrdNo},</if>
+            <if test="legacyServiceNsTime != null">legacy_service_ns_time = #{legacyServiceNsTime},</if>
+            <if test="legacyDispatchNsTime != null">legacy_dispatch_ns_time = #{legacyDispatchNsTime},</if>
+            <if test="legacyDispatchOrdClass != null">legacy_dispatch_ord_class = #{legacyDispatchOrdClass},</if>
+            <if test="legacyServiceOrdClass != null">legacy_service_ord_class = #{legacyServiceOrdClass},</if>
             <if test="updateTime != null">update_time = #{updateTime},</if>
             <if test="updateBy != null">update_by = #{updateBy},</if>
         </trim>

--
Gitblit v1.9.1