修改异常xml获取参数方式

This commit is contained in:
dxc
2021-07-12 14:20:19 +08:00
parent 987c70827b
commit da2fcacdfc

View File

@ -111,7 +111,7 @@
p.qual_flow_id as qualFlowId p.qual_flow_id as qualFlowId
from biz_project_section t,dict_choose_process p from biz_project_section t,dict_choose_process p
where p.choose_process = t.choose_process where p.choose_process = t.choose_process
and t.project_id = ${projectId} and t.project_id = #{projectId}
</select> </select>
<select id="selectAllBatchIds" resultType="com.chinaunicom.mall.ebtp.project.projectsection.entity.ProjectSectionVO"> <select id="selectAllBatchIds" resultType="com.chinaunicom.mall.ebtp.project.projectsection.entity.ProjectSectionVO">
@ -145,7 +145,7 @@
t.business_module as businessModule, t.business_module as businessModule,
t.status as status t.status as status
from biz_project_section t from biz_project_section t
where t.project_id = ${projectId} where t.project_id = #{projectId}
and not exists (select 1 from biz_project_section_exception e where e.section_id = t.id) and not exists (select 1 from biz_project_section_exception e where e.section_id = t.id)
</select> </select>
@ -161,7 +161,7 @@
left join biz_project_section_exception e on e.section_id = t.id and e.exception_id = ${exceptionId} 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' where t.project_id = ${projectId} and t.status != '9'
and not exists (select 1 from biz_project_section_exception e,biz_project_section s 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) and e.section_id = t.id)
</select> </select>
@ -174,8 +174,8 @@
t.status as status t.status as status
from biz_project_section t,biz_project_section_exception e from biz_project_section t,biz_project_section_exception e
where e.section_id = t.id where e.section_id = t.id
and t.project_id = ${projectId} and t.project_id = #{projectId}
and e.exception_id = ${exceptionId} and e.exception_id = #{exceptionId}
</select> </select>
<select id="selectArchiveById" resultType="com.chinaunicom.mall.ebtp.project.projectsection.entity.ProjectSectionVO"> <select id="selectArchiveById" resultType="com.chinaunicom.mall.ebtp.project.projectsection.entity.ProjectSectionVO">
@ -185,7 +185,7 @@
from biz_project_section t,biz_assess_room m from biz_project_section t,biz_assess_room m
<where> <where>
t.id = m.section_id t.id = m.section_id
and t.project_id = ${section.projectId} and t.project_id = #{section.projectId}
and t.status = #{section.status} group by m.section_id,m.room_sort and t.status = #{section.status} group by m.section_id,m.room_sort
</where> </where>
</select> </select>