From 06a17c236d4cb9b8da75fce43af938cb7ea510bf Mon Sep 17 00:00:00 2001
From: wlzboy <66905212@qq.com>
Date: 星期一, 15 十二月 2025 09:50:12 +0800
Subject: [PATCH] feat: 优化企业微信判断,优化gps分断处理

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

diff --git a/ruoyi-system/src/main/resources/mapper/system/SysTaskAdditionalFeeMapper.xml b/ruoyi-system/src/main/resources/mapper/system/SysTaskAdditionalFeeMapper.xml
index 8afa1e2..9b3e0fd 100644
--- a/ruoyi-system/src/main/resources/mapper/system/SysTaskAdditionalFeeMapper.xml
+++ b/ruoyi-system/src/main/resources/mapper/system/SysTaskAdditionalFeeMapper.xml
@@ -41,6 +41,9 @@
             <if test="quantity != null">quantity,</if>
             <if test="totalAmount != null">total_amount,</if>
             <if test="remark != null">remark,</if>
+            <if test="pid != null">pid,</if>
+            <if test="syncStatus != null">sync_status,</if>
+            <if test="syncTime != null">sync_time,</if>
             <if test="createdBy != null and createdBy != ''">created_by,</if>
         </trim>
         <trim prefix="values (" suffix=")" suffixOverrides=",">
@@ -51,6 +54,9 @@
             <if test="quantity != null">#{quantity},</if>
             <if test="totalAmount != null">#{totalAmount},</if>
             <if test="remark != null">#{remark},</if>
+            <if test="pid != null">#{pid},</if>
+            <if test="syncStatus != null">#{syncStatus},</if>
+            <if test="syncTime != null">#{syncTime},</if>
             <if test="createdBy != null and createdBy != ''">#{createdBy},</if>
         </trim>
     </insert>

--
Gitblit v1.9.1