You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
875 B
XML
19 lines
875 B
XML
2 years ago
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||
|
|
||
|
<mapper namespace="com.ruoyi.tdengine.mapper.DeviceStatusMapper">
|
||
|
|
||
|
<select id="getOnlineDevicesGroupByDay" parameterType="com.ruoyi.tdengine.api.domain.DeviceStatus" resultType="com.ruoyi.tdengine.api.domain.DeviceStatus" >
|
||
|
select timetruncate(ts,1d) ts,devicetype,onlinestatus,devicecode from #{params.databaseName}.#{params.superTableName}
|
||
|
where onlinestatus=1
|
||
|
<if test="{params.beginTime}!= null and {params.endTime} != null">
|
||
|
and ts BETWEEN #{params.beginTime} AND #{params.endTime}
|
||
|
</if>
|
||
|
<if test="sceneId != null "> and scene_id = #{sceneId}</if>
|
||
|
group by timetruncate(ts,1d),devicetype,onlinestatus,devicecode
|
||
|
order by ts
|
||
|
</select>
|
||
|
|
||
|
|
||
|
</mapper>
|