From 5d82800976a7e4cd89656920fe4936d009ead9c6 Mon Sep 17 00:00:00 2001 From: chenqi Date: Sat, 3 Jan 2026 23:52:45 +0800 Subject: [PATCH] =?UTF-8?q?refactor(patientmanage):=20=E4=B8=BA=E9=97=A8?= =?UTF-8?q?=E8=AF=8A=E8=AE=B0=E5=BD=95=E6=9C=8D=E5=8A=A1=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E6=97=A5=E5=BF=97=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 引入 lombok 的 Slf4j 注解用于日志记录 - 为 OutpatientRecordServiceImpl 添加日志支持 - 为后续调试和监控提供日志输出能力 --- .../appservice/impl/OutpatientRecordServiceImpl.java | 1 + 1 file changed, 1 insertion(+) diff --git a/openhis-server-new/openhis-application/src/main/java/com/openhis/web/patientmanage/appservice/impl/OutpatientRecordServiceImpl.java b/openhis-server-new/openhis-application/src/main/java/com/openhis/web/patientmanage/appservice/impl/OutpatientRecordServiceImpl.java index a716880b..c35f8d83 100644 --- a/openhis-server-new/openhis-application/src/main/java/com/openhis/web/patientmanage/appservice/impl/OutpatientRecordServiceImpl.java +++ b/openhis-server-new/openhis-application/src/main/java/com/openhis/web/patientmanage/appservice/impl/OutpatientRecordServiceImpl.java @@ -14,6 +14,7 @@ import com.openhis.web.patientmanage.appservice.IOutpatientRecordService; import com.openhis.web.patientmanage.dto.OutpatientRecordDto; import com.openhis.web.patientmanage.dto.OutpatientRecordSearchParam; import com.openhis.web.patientmanage.mapper.PatientManageMapper; +import lombok.extern.slf4j.Slf4j; import org.springframework.stereotype.Service; import javax.annotation.Resource;