From bb9fd6f1fad1a20e7536fad50f7f8c7d932a9011 Mon Sep 17 00:00:00 2001
From: liusheng <337615773@qq.com>
Date: 星期二, 02 九月 2025 23:17:36 +0800
Subject: [PATCH] 查询超时问题处理

---
 smartor/src/main/resources/mapper/smartor/PatArchiveMapper.xml |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/smartor/src/main/resources/mapper/smartor/PatArchiveMapper.xml b/smartor/src/main/resources/mapper/smartor/PatArchiveMapper.xml
index 009a676..ce7292e 100644
--- a/smartor/src/main/resources/mapper/smartor/PatArchiveMapper.xml
+++ b/smartor/src/main/resources/mapper/smartor/PatArchiveMapper.xml
@@ -519,7 +519,7 @@
             </if>
         </where>
         order by a.update_time desc
-        <if test="pageSize != null  and pageSize != ''"> limit ${pageNum},${pageSize} </if>
+        <if test="pn != null  and ps != null"> limit ${pn},${ps} </if>
 
     </select>
 
@@ -661,6 +661,7 @@
             </if>
         </where>
         order by a.update_time desc
+        <if test="pn != null  and ps != null"> limit ${pn},${ps} </if>
     </select>
 
     <select id="selectPatArchiveInfoByOuthosp" parameterType="com.smartor.domain.PatArchiveReq"
@@ -751,6 +752,7 @@
             </if>
         </where>
         order by a.update_time desc
+        <if test="pn != null  and ps != null"> limit ${pn},${ps} </if>
     </select>
 
     <select id="selectPatArchiveInfoByPhysical" parameterType="com.smartor.domain.PatArchiveReq"
@@ -843,6 +845,7 @@
             </if>
         </where>
         order by a.update_time desc
+        <if test="pn != null  and ps != null"> limit ${pn},${ps} </if>
     </select>
 
     <select id="selectPatArchiveInfoByInhospQC" parameterType="com.smartor.domain.PatArchiveReq"
@@ -987,6 +990,7 @@
             </if>
         </where>
         order by a.id,a.update_time desc ) as tmp order by endtime desc
+        <if test="pn != null  and ps != null"> limit ${pn},${ps} </if>
     </select>
 
     <select id="selectPatArchiveInfoByOuthospQC" parameterType="com.smartor.domain.PatArchiveReq"

--
Gitblit v1.9.3