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.
 
 
 
 
 
 

212 lines
11 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.sip.mapper.SipDeviceMapper">
<resultMap type="SipDevice" id="SipDeviceResult">
<result property="deviceId" column="device_id"/>
<result property="productId" column="product_id"/>
<result property="productName" column="product_name"/>
<result property="deviceSipId" column="device_sip_id"/>
<result property="deviceName" column="device_name"/>
<result property="manufacturer" column="manufacturer"/>
<result property="model" column="model"/>
<result property="firmware" column="firmware"/>
<result property="transport" column="transport"/>
<result property="streammode" column="streamMode"/>
<result property="online" column="online"/>
<result property="registertime" column="registerTime"/>
<result property="lastconnecttime" column="lastConnectTime"/>
<result property="activeTime" column="active_time"/>
<result property="ip" column="ip"/>
<result property="port" column="port"/>
<result property="hostaddress" column="hostAddress"/>
<result property="delFlag" column="del_flag"/>
<result property="createBy" column="create_by"/>
<result property="createTime" column="create_time"/>
<result property="updateBy" column="update_by"/>
<result property="updateTime" column="update_time"/>
<result property="remark" column="remark"/>
</resultMap>
<sql id="selectSipDeviceVo">
select device_id,
product_id,
product_name,
device_sip_id,
device_name,
manufacturer,
model,
firmware,
transport,
streamMode,
online,
registerTime,
lastConnectTime,
active_time,
ip,
port,
hostAddress,
del_flag,
create_by,
create_time,
update_by,
update_time,
remark
from sip_device
</sql>
<select id="selectSipDeviceList" parameterType="SipDevice" resultMap="SipDeviceResult">
<include refid="selectSipDeviceVo"/>
<where>
<if test="productId != null ">and product_id = #{productId}</if>
<if test="productName != null and productName != ''">and product_name like concat('%', #{productName},
'%')
</if>
<if test="deviceSipId != null and deviceSipId != ''">and device_sip_id = #{deviceSipId}</if>
<if test="deviceName != null and deviceName != ''">and device_name like concat('%', #{deviceName}, '%')
</if>
<if test="manufacturer != null and manufacturer != ''">and manufacturer = #{manufacturer}</if>
<if test="model != null and model != ''">and model = #{model}</if>
<if test="firmware != null and firmware != ''">and firmware = #{firmware}</if>
<if test="transport != null and transport != ''">and transport = #{transport}</if>
<if test="streammode != null and streammode != ''">and streamMode = #{streammode}</if>
<if test="online != null and online != ''">and online = #{online}</if>
<if test="registertime != null ">and registerTime = #{registertime}</if>
<if test="lastconnecttime != null ">and lastConnectTime = #{lastconnecttime}</if>
<if test="activeTime != null ">and active_time = #{activeTime}</if>
<if test="ip != null and ip != ''">and ip = #{ip}</if>
<if test="port != null ">and port = #{port}</if>
<if test="hostaddress != null and hostaddress != ''">and hostAddress = #{hostaddress}</if>
</where>
</select>
<select id="selectSipDeviceByDeviceId" parameterType="Long" resultMap="SipDeviceResult">
<include refid="selectSipDeviceVo"/>
where device_id = #{deviceId}
</select>
<insert id="insertSipDevice" parameterType="SipDevice" useGeneratedKeys="true" keyProperty="deviceId">
insert into sip_device
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="productId != null">product_id,</if>
<if test="productName != null and productName != ''">product_name,</if>
<if test="deviceSipId != null and deviceSipId != ''">device_sip_id,</if>
<if test="deviceName != null and deviceName != ''">device_name,</if>
<if test="manufacturer != null and manufacturer != ''">manufacturer,</if>
<if test="model != null and model != ''">model,</if>
<if test="firmware != null and firmware != ''">firmware,</if>
<if test="transport != null and transport != ''">transport,</if>
<if test="streammode != null and streammode != ''">streamMode,</if>
<if test="online != null and online != ''">online,</if>
<if test="registertime != null">registerTime,</if>
<if test="lastconnecttime != null">lastConnectTime,</if>
<if test="activeTime != null">active_time,</if>
<if test="ip != null">ip,</if>
<if test="port != null">port,</if>
<if test="hostaddress != null">hostAddress,</if>
<if test="delFlag != null and delFlag != ''">del_flag,</if>
<if test="createBy != null and createBy != ''">create_by,</if>
<if test="createTime != null">create_time,</if>
<if test="updateBy != null">update_by,</if>
<if test="updateTime != null">update_time,</if>
<if test="remark != null">remark,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="productId != null">#{productId},</if>
<if test="productName != null and productName != ''">#{productName},</if>
<if test="deviceSipId != null and deviceSipId != ''">#{deviceSipId},</if>
<if test="deviceName != null and deviceName != ''">#{deviceName},</if>
<if test="manufacturer != null and manufacturer != ''">#{manufacturer},</if>
<if test="model != null and model != ''">#{model},</if>
<if test="firmware != null and firmware != ''">#{firmware},</if>
<if test="transport != null and transport != ''">#{transport},</if>
<if test="streammode != null and streammode != ''">#{streammode},</if>
<if test="online != null and online != ''">#{online},</if>
<if test="registertime != null">#{registertime},</if>
<if test="lastconnecttime != null">#{lastconnecttime},</if>
<if test="activeTime != null">#{activeTime},</if>
<if test="ip != null">#{ip},</if>
<if test="port != null">#{port},</if>
<if test="hostaddress != null">#{hostaddress},</if>
<if test="delFlag != null and delFlag != ''">#{delFlag},</if>
<if test="createBy != null and createBy != ''">#{createBy},</if>
<if test="createTime != null">#{createTime},</if>
<if test="updateBy != null">#{updateBy},</if>
<if test="updateTime != null">#{updateTime},</if>
<if test="remark != null">#{remark},</if>
</trim>
</insert>
<update id="updateSipDevice" parameterType="SipDevice">
update sip_device
<trim prefix="SET" suffixOverrides=",">
<if test="productId != null">product_id = #{productId},</if>
<if test="productName != null and productName != ''">product_name = #{productName},</if>
<if test="deviceSipId != null and deviceSipId != ''">device_sip_id = #{deviceSipId},</if>
<if test="deviceName != null and deviceName != ''">device_name = #{deviceName},</if>
<if test="manufacturer != null and manufacturer != ''">manufacturer = #{manufacturer},</if>
<if test="model != null and model != ''">model = #{model},</if>
<if test="firmware != null and firmware != ''">firmware = #{firmware},</if>
<if test="transport != null and transport != ''">transport = #{transport},</if>
<if test="streammode != null and streammode != ''">streamMode = #{streammode},</if>
<if test="online != null and online != ''">online = #{online},</if>
<if test="registertime != null">registerTime = #{registertime},</if>
<if test="lastconnecttime != null">lastConnectTime = #{lastconnecttime},</if>
<if test="activeTime != null">active_time = #{activeTime},</if>
<if test="ip != null">ip = #{ip},</if>
<if test="port != null">port = #{port},</if>
<if test="hostaddress != null">hostAddress = #{hostaddress},</if>
<if test="delFlag != null and delFlag != ''">del_flag = #{delFlag},</if>
<if test="createBy != null and createBy != ''">create_by = #{createBy},</if>
<if test="createTime != null">create_time = #{createTime},</if>
<if test="updateBy != null">update_by = #{updateBy},</if>
<if test="updateTime != null">update_time = #{updateTime},</if>
<if test="remark != null">remark = #{remark},</if>
</trim>
where device_id = #{deviceId}
</update>
<delete id="deleteSipDeviceByDeviceId" parameterType="Long">
delete
from sip_device
where device_id = #{deviceId}
</delete>
<delete id="deleteSipDeviceByDeviceIds" parameterType="String">
delete from sip_device where device_id in
<foreach item="deviceId" collection="array" open="(" separator="," close=")">
#{deviceId}
</foreach>
</delete>
<update id="updateSipDeviceStatus" parameterType="SipDevice">
update sip_device
<trim prefix="SET" suffixOverrides=",">
<if test="online != null">online = #{online},</if>
<if test="lastconnecttime != null">lastConnectTime = #{lastconnecttime},</if>
<if test="activeTime != null">active_time = #{activeTime},</if>
<if test="ip != null">ip = #{ip},</if>
<if test="port != null">port = #{port},</if>
<if test="hostaddress != null">hostaddress = #{hostaddress},</if>
</trim>
where device_sip_id = #{deviceSipId}
</update>
<select id="selectOfflineSipDevice" parameterType="Integer" resultMap="SipDeviceResult">
<include refid="selectSipDeviceVo"/>
where NOW() > DATE_ADD(lastconnecttime, INTERVAL #{timeout} SECOND )
</select>
<select id="selectSipDeviceBySipId" parameterType="String" resultMap="SipDeviceResult">
<include refid="selectSipDeviceVo"/>
where device_sip_id = #{deviceSipId}
</select>
<delete id="deleteSipDeviceByByDeviceSipId" parameterType="String">
delete
from sip_device
where device_sip_id = #{deviceSipId}
</delete>
</mapper>