From 7693de822ae02b155eb85644128798966596e5e0 Mon Sep 17 00:00:00 2001 From: weishengyou <2454197255@qq.com> Date: Wed, 10 Dec 2025 16:49:06 +0800 Subject: [PATCH] =?UTF-8?q?=E7=8F=AD=E4=BC=9A=E7=AE=A1=E7=90=86=E6=A8=A1?= =?UTF-8?q?=E5=9D=97-=E4=BF=AE=E5=A4=8D=E4=BA=86=E5=BE=85=E5=8A=9E?= =?UTF-8?q?=E7=8F=AD=E4=BC=9A=E5=9C=A8=E8=BE=85=E5=AF=BC=E5=91=98=E5=8F=98?= =?UTF-8?q?=E5=8A=A8=E5=90=8E=E6=98=AF=E5=90=A6=E4=B8=8A=E4=BC=A0=E7=9A=84?= =?UTF-8?q?=E6=98=BE=E7=A4=BAbug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../resources/mapper/routine/RtClassMettingThemeMapper.xml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/srs-routine/src/main/resources/mapper/routine/RtClassMettingThemeMapper.xml b/srs-routine/src/main/resources/mapper/routine/RtClassMettingThemeMapper.xml index 5f17141..77dba20 100644 --- a/srs-routine/src/main/resources/mapper/routine/RtClassMettingThemeMapper.xml +++ b/srs-routine/src/main/resources/mapper/routine/RtClassMettingThemeMapper.xml @@ -74,7 +74,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" from ( select cm.*,mc.cr_teacher_no,case when mc.cr_no is NULL then '0' else '1' end as is_complate from rt_class_metting_theme cm - left join rt_class_metting_content mc on cm.cm_no=mc.cr_cm_no and mc.cr_teacher_no= #{userName} ) temp + left join rt_class_metting_content mc on cm.cm_no=mc.cr_cm_no and mc.cr_class_no in ( + select class_id from srs_class sc + left join cph_teacher ct on sc.teacher_id = ct.teacher_id + where ct.employee_id = #{userName} + ) ) temp temp.is_complate=#{isComplate}