From 27112e6b5463f2de5edb575191f20761db07a07b Mon Sep 17 00:00:00 2001 From: zhangye <654600784@qq.com> Date: Fri, 6 Mar 2026 10:53:59 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9client=E6=82=A3=E8=80=85?= =?UTF-8?q?=E5=92=8C=E6=8A=A5=E5=91=8A=E5=8D=95=E5=88=97=E8=A1=A8=E6=9D=83?= =?UTF-8?q?=E9=99=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/ccsens/client/service/impl/PmsPatientServiceImpl.java | 1 + 1 file changed, 1 insertion(+) diff --git a/ruisi_java/ruisi-web-client/src/main/java/com/ccsens/client/service/impl/PmsPatientServiceImpl.java b/ruisi_java/ruisi-web-client/src/main/java/com/ccsens/client/service/impl/PmsPatientServiceImpl.java index 18f8aab..5271fa5 100644 --- a/ruisi_java/ruisi-web-client/src/main/java/com/ccsens/client/service/impl/PmsPatientServiceImpl.java +++ b/ruisi_java/ruisi-web-client/src/main/java/com/ccsens/client/service/impl/PmsPatientServiceImpl.java @@ -222,6 +222,7 @@ public class PmsPatientServiceImpl implements IPmsPatientService { PmsPatientBodyExample patientBodyExample = new PmsPatientBodyExample(); patientBodyExample.createCriteria().andPatientIdEqualTo(pmsPatient.getId()) .andDelFlagEqualTo((byte) 0); + patientBodyExample.setOrderByClause("create_time desc"); List pmsPatientBodies = pmsPatientBodyMapper.selectByExample(patientBodyExample); if (CollUtil.isNotEmpty(pmsPatientBodies)) { PmsPatientBody body = pmsPatientBodies.get(0);