| | |
| | | </foreach>
|
| | | </when>
|
| | | <otherwise>
|
| | | DATE_FORMAT( h.time, '%Y-%m-%d' ) AS 'time'
|
| | | h.time
|
| | | </otherwise>
|
| | | </choose>
|
| | | FROM
|
| | | alarm h, |
| | | alarm_daily h, |
| | | device d,
|
| | | monitor_point mp
|
| | | WHERE d.monitor_point_id = mp.id
|
| | |
| | | <if test="mac != null">
|
| | | AND d.mac = #{mac}
|
| | | </if>
|
| | | <if test="state != null">
|
| | | AND h.state = #{state}
|
| | | <if test="level != null">
|
| | | AND h.state = #{level}
|
| | | </if>
|
| | | GROUP BY
|
| | | <if test="dimension=='monitorPoint'">
|
| | | mp.id,
|
| | | </if>
|
| | | DATE_FORMAT( h.time, '%Y-%m-%d' )
|
| | | h.time
|
| | | ) a
|
| | | <if test="dimension=='monitorPoint'">
|
| | | GROUP BY name
|