From f08739f46afe856f60ebb1d21ab23d72947629ed Mon Sep 17 00:00:00 2001
From: wlzboy <66905212@qq.com>
Date: 星期日, 21 十二月 2025 00:03:12 +0800
Subject: [PATCH] feat:优化任务搜索查询 app

---
 ruoyi-system/src/main/resources/mapper/system/SysTaskEmergencyMapper.xml |   10 +++++++++-
 1 files changed, 9 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 d5f526f..30e4c75 100644
--- a/ruoyi-system/src/main/resources/mapper/system/SysTaskEmergencyMapper.xml
+++ b/ruoyi-system/src/main/resources/mapper/system/SysTaskEmergencyMapper.xml
@@ -51,6 +51,8 @@
         <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="serviceOrdVip"           column="service_ord_vip"         />
+        <result property="fromHq2Is"               column="from_hq2_is"             />
         <result property="createTime"              column="create_time"             />
         <result property="updateTime"              column="update_time"             />
         <result property="createBy"                column="create_by"               />
@@ -65,7 +67,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, legacy_dispatch_ord_no, legacy_service_ns_time, legacy_dispatch_ns_time, legacy_dispatch_ord_class, legacy_service_ord_class,
+               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, service_ord_vip, from_hq2_is,
                create_time, update_time, create_by, update_by
         from sys_task_emergency
     </sql>
@@ -128,6 +130,8 @@
             <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="serviceOrdVip != null">service_ord_vip,</if>
+            <if test="fromHq2Is != null">from_hq2_is,</if>
             <if test="createTime != null">create_time,</if>
             <if test="updateTime != null">update_time,</if>
             <if test="createBy != null">create_by,</if>
@@ -179,6 +183,8 @@
             <if test="legacyDispatchNsTime != null">#{legacyDispatchNsTime},</if>
             <if test="legacyDispatchOrdClass != null">#{legacyDispatchOrdClass},</if>
             <if test="legacyServiceOrdClass != null">#{legacyServiceOrdClass},</if>
+            <if test="serviceOrdVip != null">#{serviceOrdVip},</if>
+            <if test="fromHq2Is != null">#{fromHq2Is},</if>
             <if test="createTime != null">#{createTime},</if>
             <if test="updateTime != null">#{updateTime},</if>
             <if test="createBy != null">#{createBy},</if>
@@ -233,6 +239,8 @@
             <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="serviceOrdVip != null">service_ord_vip = #{serviceOrdVip},</if>
+            <if test="fromHq2Is != null">from_hq2_is = #{fromHq2Is},</if>
             <if test="updateTime != null">update_time = #{updateTime},</if>
             <if test="updateBy != null">update_by = #{updateBy},</if>
         </trim>

--
Gitblit v1.9.1