From 2f234ca904d560e7c61da9d5645cb90f0161a46b Mon Sep 17 00:00:00 2001
From: liyj <1003249715@qq.com>
Date: Fri, 13 Sep 2024 22:41:03 +0800
Subject: [PATCH] 1、修复办理结果看不到协议文书问题

---
 dyh-service/dyh-mediate/src/main/java/cn/huge/module/cases/dao/mapper/xml/CaseInfoMapper.xml |   20 ++++++++++++++++++--
 1 files changed, 18 insertions(+), 2 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 7862efc..1b530d0 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
@@ -531,6 +531,21 @@
         </if>
     </sql>
     <!-- 更新对象 -->
+    <update id="updateCaseInfoList">
+        update
+        <include refid="table-name"/>
+        <set>
+            <include refid="set-part"/>
+        </set>
+        <where>
+            id IN
+            <foreach item="id" collection="caseIdList" open="(" separator="," close=")">
+                #{id}
+            </foreach>
+        </where>
+    </update>
+
+    <!-- 批量更新对象 -->
     <update id="updateCaseInfo">
         update
         <include refid="table-name"/>
@@ -541,6 +556,7 @@
             id = #{entity.id}
         </where>
     </update>
+
     <!-- 条件更新对象 -->
     <update id="updateCaseInfoTerms">
         update
@@ -596,7 +612,7 @@
         select
         COUNT(1)
         from
-        dyh_case_info a LEFT JOIN dyh_case_info_unfold b on a.id = b.case_id
+        dyh_case_info a LEFT JOIN dyh_case_info_unfold b on a.id = b.id
         <include refid="where-part-all"/>
     </select>
     <!--  根据条件分页查询  -->
@@ -604,7 +620,7 @@
         SELECT
         <include refid="column-part-all"/>
         FROM
-        dyh_case_info a LEFT JOIN dyh_case_info_unfold b on a.id = b.case_id
+        dyh_case_info a LEFT JOIN dyh_case_info_unfold b on a.id = b.id
         <include refid="where-part-all"/>
         <if test="page.sort != null">
             <foreach collection="page.sort" item="s" index="index" separator="," open="order by ">

--
Gitblit v1.8.0