| | |
| | | mp.area_code = #{areaCode}
|
| | | AND h.time >= #{start}
|
| | | AND h.time < #{end}
|
| | | AND h.mac = d.mac |
| | | AND d.monitor_point_id = mp.id |
| | | <if test="orgIds != null and orgIds.size > 0">
|
| | | AND mp.organization_id IN
|
| | | <foreach collection="orgIds" open="(" separator="," close=")" item="listItem">
|
| | | #{listItem}
|
| | | </foreach>
|
| | | </if>
|
| | | AND h.mac = d.mac |
| | | AND d.monitor_point_id = mp.id |
| | | <if test="deviceVersionId != null">
|
| | | AND d.device_version_id = #{deviceVersionId} |
| | | </if>
|
| | | <if test="macKey != 'all'">
|
| | | GROUP BY d.id
|
| | | ORDER BY avg desc
|