|
|
@ -5,11 +5,16 @@ |
|
|
|
|
|
|
|
|
|
|
|
<select id="selectHandlePage" resultType="com.hnac.hzims.operational.alert.vo.AlarmHandleVo"> |
|
|
|
<select id="selectHandlePage" resultType="com.hnac.hzims.operational.alert.vo.AlarmHandleVo"> |
|
|
|
select h.*,handle_user,d.phenomenon_id,d.access_id,d.delay_time,d.delay_cause, |
|
|
|
select h.*,handle_user,d.phenomenon_id,d.access_id,d.delay_time,d.delay_cause, |
|
|
|
d.false_alarm_desc,d.file_path,s.name as station_name |
|
|
|
d.false_alarm_desc,d.file_path,s.name as station_name,p.check_process_instance_id,a.process_instance_id |
|
|
|
from hzims_alarm_handle h left join hzims_alarm_handle_detail d |
|
|
|
from hzims_alarm_handle h |
|
|
|
|
|
|
|
left join hzims_alarm_handle_detail d |
|
|
|
on h.detail_id = d.id |
|
|
|
on h.detail_id = d.id |
|
|
|
left join hzims_station s |
|
|
|
left join hzims_station s |
|
|
|
on h.station_code = s.code |
|
|
|
on h.station_code = s.code |
|
|
|
|
|
|
|
left join hzims_oper_phenomenon p |
|
|
|
|
|
|
|
on d.PHENOMENON_ID = p.id |
|
|
|
|
|
|
|
left join hzims_oper_access_plan a |
|
|
|
|
|
|
|
on d.access_id = a.id |
|
|
|
<where> |
|
|
|
<where> |
|
|
|
h.is_deleted = 0 |
|
|
|
h.is_deleted = 0 |
|
|
|
<if test="param.handleUser != null"> |
|
|
|
<if test="param.handleUser != null"> |
|
|
|