From 202729432866117778bc1c20315a06aa84fee98e Mon Sep 17 00:00:00 2001 From: xuhy <3313886187@qq.com> Date: 星期五, 09 五月 2025 15:47:47 +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