87 lines
4.2 KiB
XML
87 lines
4.2 KiB
XML
|
|
<?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.xzzn.ems.mapper.EmsMqttTopicConfigMapper">
|
||
|
|
|
||
|
|
<resultMap type="EmsMqttTopicConfig" id="EmsMqttTopicConfigResult">
|
||
|
|
<result property="id" column="id" />
|
||
|
|
<result property="mqttTopic" column="mqtt_topic" />
|
||
|
|
<result property="topicName" column="topic_name" />
|
||
|
|
<result property="method" column="method" />
|
||
|
|
<result property="siteId" column="siteId" />
|
||
|
|
<result property="createBy" column="create_by" />
|
||
|
|
<result property="createTime" column="create_time" />
|
||
|
|
<result property="updateBy" column="update_by" />
|
||
|
|
<result property="updateTime" column="update_time" />
|
||
|
|
</resultMap>
|
||
|
|
|
||
|
|
<sql id="selectEmsMqttTopicConfigVo">
|
||
|
|
select id, mqtt_topic, topic_name, method, siteId, create_by, create_time, update_by, update_time from ems_mqtt_topic_config
|
||
|
|
</sql>
|
||
|
|
|
||
|
|
<select id="selectEmsMqttTopicConfigList" parameterType="EmsMqttTopicConfig" resultMap="EmsMqttTopicConfigResult">
|
||
|
|
<include refid="selectEmsMqttTopicConfigVo"/>
|
||
|
|
<where>
|
||
|
|
<if test="mqttTopic != null and mqttTopic != ''"> and mqtt_topic like concat('%', #{mqttTopic}, '%')</if>
|
||
|
|
<if test="topicName != null and topicName != ''"> and topic_name like concat('%', #{topicName}, '%')</if>
|
||
|
|
<if test="method != null and method != ''"> and method = #{method}</if>
|
||
|
|
<if test="siteId != null and siteId != ''"> and siteId = #{siteId}</if>
|
||
|
|
</where>
|
||
|
|
</select>
|
||
|
|
|
||
|
|
<select id="selectEmsMqttTopicConfigById" parameterType="Long" resultMap="EmsMqttTopicConfigResult">
|
||
|
|
<include refid="selectEmsMqttTopicConfigVo"/>
|
||
|
|
where id = #{id}
|
||
|
|
</select>
|
||
|
|
|
||
|
|
<insert id="insertEmsMqttTopicConfig" parameterType="EmsMqttTopicConfig" useGeneratedKeys="true" keyProperty="id">
|
||
|
|
insert into ems_mqtt_topic_config
|
||
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||
|
|
<if test="mqttTopic != null">mqtt_topic,</if>
|
||
|
|
<if test="topicName != null">topic_name,</if>
|
||
|
|
<if test="method != null">method,</if>
|
||
|
|
<if test="siteId != null">siteId,</if>
|
||
|
|
<if test="createBy != null">create_by,</if>
|
||
|
|
<if test="createTime != null">create_time,</if>
|
||
|
|
<if test="updateBy != null">update_by,</if>
|
||
|
|
<if test="updateTime != null">update_time,</if>
|
||
|
|
</trim>
|
||
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||
|
|
<if test="mqttTopic != null">#{mqttTopic},</if>
|
||
|
|
<if test="topicName != null">#{topicName},</if>
|
||
|
|
<if test="method != null">#{method},</if>
|
||
|
|
<if test="siteId != null">#{siteId},</if>
|
||
|
|
<if test="createBy != null">#{createBy},</if>
|
||
|
|
<if test="createTime != null">#{createTime},</if>
|
||
|
|
<if test="updateBy != null">#{updateBy},</if>
|
||
|
|
<if test="updateTime != null">#{updateTime},</if>
|
||
|
|
</trim>
|
||
|
|
</insert>
|
||
|
|
|
||
|
|
<update id="updateEmsMqttTopicConfig" parameterType="EmsMqttTopicConfig">
|
||
|
|
update ems_mqtt_topic_config
|
||
|
|
<trim prefix="SET" suffixOverrides=",">
|
||
|
|
<if test="mqttTopic != null">mqtt_topic = #{mqttTopic},</if>
|
||
|
|
<if test="topicName != null">topic_name = #{topicName},</if>
|
||
|
|
<if test="method != null">method = #{method},</if>
|
||
|
|
<if test="siteId != null">siteId = #{siteId},</if>
|
||
|
|
<if test="createBy != null">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>
|
||
|
|
</trim>
|
||
|
|
where id = #{id}
|
||
|
|
</update>
|
||
|
|
|
||
|
|
<delete id="deleteEmsMqttTopicConfigById" parameterType="Long">
|
||
|
|
delete from ems_mqtt_topic_config where id = #{id}
|
||
|
|
</delete>
|
||
|
|
|
||
|
|
<delete id="deleteEmsMqttTopicConfigByIds" parameterType="String">
|
||
|
|
delete from ems_mqtt_topic_config where id in
|
||
|
|
<foreach item="id" collection="array" open="(" separator="," close=")">
|
||
|
|
#{id}
|
||
|
|
</foreach>
|
||
|
|
</delete>
|
||
|
|
</mapper>
|