From a0fb494a8a1d75c0ad52816403282d7175faca10 Mon Sep 17 00:00:00 2001
From: 陈昶聿 <chychen@nbjetron.com>
Date: 星期二, 09 六月 2026 14:05:34 +0800
Subject: [PATCH] 【市一】手术随访对接
---
ruoyi-quartz/src/main/resources/mapper/quartz/CollectHISMapper.xml | 15 ++++++++-------
1 files changed, 8 insertions(+), 7 deletions(-)
diff --git a/ruoyi-quartz/src/main/resources/mapper/quartz/CollectHISMapper.xml b/ruoyi-quartz/src/main/resources/mapper/quartz/CollectHISMapper.xml
index 4767c80..1e46f20 100644
--- a/ruoyi-quartz/src/main/resources/mapper/quartz/CollectHISMapper.xml
+++ b/ruoyi-quartz/src/main/resources/mapper/quartz/CollectHISMapper.xml
@@ -655,7 +655,6 @@
b.leavehospitaldistrictid,
b.deptid,
b.leaveldeptid
-
FROM
healthy_inhosp b
where 1=1
@@ -884,8 +883,9 @@
o.vopcode ,
o.opdesc,
o.oplevelcode ,
- o.opleveldesc
- from PAT_MED_OPERATION o
+ o.opleveldesc,
+ o.last_Update_Time
+ from HEALTHY_PAT_MED_OPERATION o
where 1=1
<if test="orgid != null and orgid != ''">
AND o.orgid = #{orgid}
@@ -923,8 +923,9 @@
oi.guid,
oi.pid,
oi.opercheck_flag,
- oi.long_task_reason
- from PAT_MED_OPERATION_ITEM oi
+ oi.long_task_reason,
+ oi.last_Update_Time
+ from HEALTHY_PAT_MED_OPERATION_ITEM oi
where 1=1
<if test="orgid != null and orgid != ''">
AND oi.orgid = #{orgid}
@@ -933,10 +934,10 @@
AND oi.opid = #{opid}
</if>
<if test="lastStartTime != null and lastStartTime != ''">
- and to_char(oi.last_Update_Time, 'YYYY-MM-DD HH24:MI:SS') >= #{lastStartTime}
+ and last_Update_Time >= to_date(#{lastStartTime}, 'YYYY-MM-DD HH24:MI:SS')
</if>
<if test="lastEndTime != null and lastEndTime != ''">
- and to_char(oi.last_Update_Time, 'YYYY-MM-DD HH24:MI:SS') <= #{lastEndTime}
+ and last_Update_Time <= to_date(#{lastEndTime}, 'YYYY-MM-DD HH24:MI:SS')
</if>
</select>
</mapper>
--
Gitblit v1.9.3