From da2fcacdfc772a68b4f8c5aaf6267dceba6a444c Mon Sep 17 00:00:00 2001 From: dxc Date: Mon, 12 Jul 2021 14:20:19 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=BC=82=E5=B8=B8xml?= =?UTF-8?q?=E8=8E=B7=E5=8F=96=E5=8F=82=E6=95=B0=E6=96=B9=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../dao/mapper/ProjectSectionMapper.xml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/main/java/com/chinaunicom/mall/ebtp/project/projectsection/dao/mapper/ProjectSectionMapper.xml b/src/main/java/com/chinaunicom/mall/ebtp/project/projectsection/dao/mapper/ProjectSectionMapper.xml index fdae6d3..4eb1fd3 100644 --- a/src/main/java/com/chinaunicom/mall/ebtp/project/projectsection/dao/mapper/ProjectSectionMapper.xml +++ b/src/main/java/com/chinaunicom/mall/ebtp/project/projectsection/dao/mapper/ProjectSectionMapper.xml @@ -111,7 +111,7 @@ p.qual_flow_id as qualFlowId from biz_project_section t,dict_choose_process p where p.choose_process = t.choose_process - and t.project_id = ${projectId} + and t.project_id = #{projectId} @@ -161,7 +161,7 @@ left join biz_project_section_exception e on e.section_id = t.id and e.exception_id = ${exceptionId} where t.project_id = ${projectId} and t.status != '9' and not exists (select 1 from biz_project_section_exception e,biz_project_section s - where s.id = e.section_id and s.project_id = ${projectId} and e.exception_id != ${exceptionId} + where s.id = e.section_id and s.project_id = #{projectId} and e.exception_id != #{exceptionId} and e.section_id = t.id) @@ -174,8 +174,8 @@ t.status as status from biz_project_section t,biz_project_section_exception e where e.section_id = t.id - and t.project_id = ${projectId} - and e.exception_id = ${exceptionId} + and t.project_id = #{projectId} + and e.exception_id = #{exceptionId}