You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
2.8 KiB
62 lines
2.8 KiB
<?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.fastbee.iot.mapper.EventLogMapper">
|
|
|
|
<resultMap type="com.fastbee.iot.domain.EventLog" id="EventLogResult">
|
|
<result property="logId" column="log_id" />
|
|
<result property="identity" column="identity" />
|
|
<result property="modelName" column="model_name" />
|
|
<result property="logType" column="log_type" />
|
|
<result property="logValue" column="log_value" />
|
|
<result property="deviceId" column="device_id" />
|
|
<result property="deviceName" column="device_name" />
|
|
<result property="serialNumber" column="serial_number" />
|
|
<result property="isMonitor" column="is_monitor" />
|
|
<result property="mode" column="mode" />
|
|
<result property="userId" column="user_id" />
|
|
<result property="userName" column="user_name" />
|
|
<result property="tenantId" column="tenant_id" />
|
|
<result property="tenantName" column="tenant_name" />
|
|
<result property="createBy" column="create_by" />
|
|
<result property="createTime" column="create_time" />
|
|
<result property="remark" column="remark" />
|
|
</resultMap>
|
|
|
|
<sql id="selectEventLogVo">
|
|
select log_id, identity, model_name, log_type, log_value, device_id, device_name, serial_number, is_monitor, mode, user_id, user_name, tenant_id, tenant_name, create_by, create_time, remark from iot_event_log
|
|
</sql>
|
|
|
|
|
|
<select id="listHistory" resultType="com.fastbee.iot.model.HistoryModel">
|
|
select log_value as value,
|
|
create_time as time,
|
|
identity as identity
|
|
from iot_event_log
|
|
<where>
|
|
<if test="serialNumber != null and serialNumber != ''">
|
|
and serial_number = #{serialNumber}
|
|
</if>
|
|
<if test="params.beginTime != null and params.beginTime != '' and params.endTime != null and params.endTime != ''">
|
|
and create_time between #{params.beginTime} and #{params.endTime}
|
|
</if>
|
|
<if test="identityList != null and identityList != ''">
|
|
and identity in
|
|
<foreach collection="identityList" item="identity" open="(" separator="," close=")">
|
|
#{identity}
|
|
</foreach>
|
|
</if>
|
|
</where>
|
|
order by create_time desc
|
|
</select>
|
|
|
|
<select id="selectEventLogCount" parameterType="Long" resultType="Long">
|
|
select count(1) AS eventCount
|
|
from iot_event_log
|
|
<where>
|
|
log_type = 3
|
|
<if test="userId != null and userId != 0"> and user_id = #{userId}</if>
|
|
</where>
|
|
</select>
|
|
</mapper>
|
|
|