From a11f3463b54a09a5f3ddde6b4aba6e21781b13b8 Mon Sep 17 00:00:00 2001 From: haorp <754760654@qq.com> Date: Wed, 28 May 2025 16:05:04 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AD=95=E5=A6=87=E5=AD=A6=E6=A0=A1=E5=8A=9F?= =?UTF-8?q?=E8=83=BD=E5=BC=80=E5=8F=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/lyms/platform/operate/web/facade/PatientCourseWxFacade.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/PatientCourseWxFacade.java b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/PatientCourseWxFacade.java index 19c2cf8..ba46c19 100644 --- a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/PatientCourseWxFacade.java +++ b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/PatientCourseWxFacade.java @@ -232,7 +232,7 @@ public class PatientCourseWxFacade { patientCourseQuery.setStatus(1); patientCourseQuery.setId(patientCourseId); List patientCourseModels = patientCourseService.queryPatientCourseList(patientCourseQuery); - if (!CollectionUtils.isEmpty(patientCourseModels)) + if (CollectionUtils.isEmpty(patientCourseModels)) { objectResponse.setErrorcode(ErrorCodeConstants.DATA_EXPIRE); objectResponse.setErrormsg("您签到的课程还没有预约,请预约后签到!"); -- 1.8.3.1