From 5d2d6fdff67f8f9a7e65abdbb4b87dba07dcb32b Mon Sep 17 00:00:00 2001
From: xuhy <3313886187@qq.com>
Date: 星期二, 02 九月 2025 10:23:02 +0800
Subject: [PATCH] 上传修改

---
 ruoyi-system/src/main/resources/mapper/system/TProjectTeamMapper.xml |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/ruoyi-system/src/main/resources/mapper/system/TProjectTeamMapper.xml b/ruoyi-system/src/main/resources/mapper/system/TProjectTeamMapper.xml
index 7d502d9..1263d2c 100644
--- a/ruoyi-system/src/main/resources/mapper/system/TProjectTeamMapper.xml
+++ b/ruoyi-system/src/main/resources/mapper/system/TProjectTeamMapper.xml
@@ -24,11 +24,11 @@
         <include refid="Base_Column_List" />
         FROM t_project_team
         <where>
-            <if test="teamName != null and teamName != ''">
-                AND team_name LIKE CONCAT('%', #{teamName}, '%')
+            <if test="query.teamName != null and query.teamName != ''">
+                AND team_name LIKE CONCAT('%', #{query.teamName}, '%')
             </if>
-            <if test="personCharge != null and personCharge != ''">
-                AND person_charge LIKE CONCAT('%', #{personCharge}, '%')
+            <if test="query.personCharge != null and query.personCharge != ''">
+                AND person_charge LIKE CONCAT('%', #{query.personCharge}, '%')
             </if>
             <if test="query.startTime != null and query.startTime != '' and query.endTime != null and query.endTime != ''">
                 AND create_time BETWEEN #{query.startTime} AND #{query.endTime}

--
Gitblit v1.7.1