This commit is contained in:
liuhongrui
2025-03-17 16:46:01 +08:00
parent 73c506b4bf
commit 8c6be970bb
5 changed files with 6 additions and 12 deletions

View File

@@ -131,7 +131,7 @@
<!-- 门诊输液记录患者列表信息查询-->
<select id="getOutpatientInfusionPatient"
resultType="com.openhis.web.outpatientmanage.dto.OutpatientInfusionSearchParam">
resultType="com.openhis.web.outpatientmanage.dto.OutpatientInfusionPatientDto">
SELECT
T1.service_id,
T1.prescription_no,
@@ -176,7 +176,7 @@
<!-- 门诊输液记录初始化,默认显示今天待执行输液记录-->
<select id="getOutpatientInfusionRecord"
resultType="com.openhis.web.outpatientmanage.dto.OutpatientInfusionPatientDto">
resultType="com.openhis.web.outpatientmanage.dto.OutpatientInfusionRecordDto">
SELECT
T1.service_id,
T1.bus_no,

View File

@@ -203,7 +203,7 @@
</select>
<!-- 查询医生名字列表-->
<select id="getDoctorNames" resultType="java.lang.String">
<select id="getDoctorNames" resultType ="java.lang.String">
SELECT MIN(p.name) AS practitioner_name
FROM adm_encounter_participant ep
LEFT JOIN adm_practitioner p ON ep.practitioner_id = p.id