| | |
| | | |
| | | <select id="getAlarmAndSuggestPage" resultType="com.iailab.module.model.api.mcs.dto.StAlarmAndSuggestRespVO"> |
| | | select |
| | | t.id, |
| | | t.type, |
| | | t.title, |
| | | t.content, |
| | | t.time, |
| | | t.obj |
| | | t.obj, |
| | | t.status |
| | | from ( |
| | | select 'alarm' type, t1.title, t1.content, t1.alarm_time `time`, t1.alarm_obj obj |
| | | select id,'alarm' type, t1.title, t1.content, t1.alarm_time `time`, t1.alarm_obj obj,0 status |
| | | from t_mm_predict_alarm_message t1 |
| | | UNION |
| | | select 'suggest' type, t2.title, t2.content, t2.schedule_time `time`, t2.schedule_obj obj |
| | | select id,'suggest' type, t2.title, t2.content, t2.schedule_time `time`, t2.schedule_obj obj,t2.status |
| | | from t_st_schedule_suggest t2 |
| | | ) t |
| | | <where> |
| | |
| | | </if> |
| | | <if test="params.type != null and params.type != ''"> |
| | | and t.type = #{params.type} |
| | | </if> |
| | | <if test="params.objs != null and !params.objs.isEmpty()"> |
| | | and t.obj in |
| | | <foreach item="obj" collection="params.objs" open="(" separator="," close=")"> |
| | | #{obj} |
| | | </foreach> |
| | | </if> |
| | | <if test="params.startTime != null"> |
| | | and t.time >= #{params.startTime} |