From 93439681edf7d2e746986aee19938e0027a8b7df Mon Sep 17 00:00:00 2001
From: zhouxiantao <1026371446@qq.com>
Date: Sun, 08 Sep 2024 18:06:16 +0800
Subject: [PATCH] 小程序优化

---
 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