From 96c79a4013c2abfd7f9de8298c7e6420fc5126b1 Mon Sep 17 00:00:00 2001 From: zhangchao Date: Tue, 15 Oct 2024 08:20:18 +0800 Subject: [PATCH] =?UTF-8?q?#fix:=E4=BC=98=E5=8C=96=E9=97=A8=E8=AF=8A?= =?UTF-8?q?=E5=B0=B1=E8=AF=8A=E5=88=97=E8=A1=A8=E4=BA=A7=E5=90=8E=E4=B8=8D?= =?UTF-8?q?=E5=8C=85=E5=90=AB=E4=BA=A7=E5=90=8E=E6=9C=8D=E5=8A=A1=E9=83=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/resources/mainOrm/master/AppointmentMapper.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform-biz-service/src/main/resources/mainOrm/master/AppointmentMapper.xml b/platform-biz-service/src/main/resources/mainOrm/master/AppointmentMapper.xml index 727a677..12206a3 100644 --- a/platform-biz-service/src/main/resources/mainOrm/master/AppointmentMapper.xml +++ b/platform-biz-service/src/main/resources/mainOrm/master/AppointmentMapper.xml @@ -37,7 +37,7 @@ and (name like concat('%',#{name},'%') or pinyin like concat('%',#{name},'%')) - and (dept like concat(#{dept},'%') or dept like concat("产后",'%')) + and (dept like concat(#{dept},'%') or (dept like concat("产后",'%') and dept !='产后服务部')) and =#{startTime}]]> and -- 1.8.3.1