From bc684a5f99b82ff46b0dc87cc4917ca1b4b88fe1 Mon Sep 17 00:00:00 2001
From: liyj <1003249715@qq.com>
Date: Mon, 09 Sep 2024 22:20:12 +0800
Subject: [PATCH] 1、流程优化

---
 dyh-service/dyh-mediate/src/main/java/cn/huge/module/cases/dao/mapper/xml/CaseInfoMapper.xml |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dyh-service/dyh-mediate/src/main/java/cn/huge/module/cases/dao/mapper/xml/CaseInfoMapper.xml b/dyh-service/dyh-mediate/src/main/java/cn/huge/module/cases/dao/mapper/xml/CaseInfoMapper.xml
index c168b50..c222a72 100644
--- a/dyh-service/dyh-mediate/src/main/java/cn/huge/module/cases/dao/mapper/xml/CaseInfoMapper.xml
+++ b/dyh-service/dyh-mediate/src/main/java/cn/huge/module/cases/dao/mapper/xml/CaseInfoMapper.xml
@@ -282,8 +282,8 @@
             <where>
                 <if test="terms.ids != null and terms.ids.size > 0">
                     and id in
-                    <foreach collection="terms.id" item="terms.ids" index="index" open="(" separator="," close=")">
-                        #{terms.id}
+                    <foreach collection="terms.ids" item="id" index="index" open="(" separator="," close=")">
+                        #{id}
                     </foreach>
                 </if>
                 <if test="terms.id != null and terms.id !=''">
@@ -459,8 +459,8 @@
                 </if>
                 <if test="terms.processList != null and terms.processList.size > 0">
                     and process in
-                    <foreach collection="terms.process" item="terms.processList" index="index" open="(" separator="," close=")">
-                        #{terms.process}
+                    <foreach collection="terms.processList" item="process" index="index" open="(" separator="," close=")">
+                        #{process}
                     </foreach>
                 </if>
                 <if test="terms.process != null and terms.process !=''">

--
Gitblit v1.8.0