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.
142 lines
6.9 KiB
142 lines
6.9 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.zc.business.mapper.DcEmergencyPlansMapper">
|
|
|
|
<resultMap type="DcEmergencyPlans" id="DcEmergencyPlansResult">
|
|
<result property="id" column="id"/>
|
|
<result property="planName" column="plan_name"/>
|
|
<result property="eventType" column="event_type"/>
|
|
<result property="triggerMechanism" column="trigger_mechanism"/>
|
|
<result property="createTime" column="create_time"/>
|
|
<result property="updateTime" column="update_time"/>
|
|
<result property="deviceType" column="device_type"/>
|
|
<result property="triggeringCondition" column="triggering_condition"/>
|
|
<result property="controllableDevice" column="controllable_device"/>
|
|
<result property="controlCommand" column="control_command"/>
|
|
<collection property="dcExecuteAction" ofType="DcExecuteAction">
|
|
<result property="id" column="action_id"/>
|
|
<result property="emergencyPlansId" column="action_emergency_plans_id"/>
|
|
<result property="deviceType" column="action_device_type"/>
|
|
<result property="createTime" column="action_create_time"/>
|
|
<result property="updateTime" column="action_update_time"/>
|
|
<result property="searchRule" column="action_search_rule"/>
|
|
<result property="number" column="action_number"/>
|
|
<result property="deviceList" column="action_device_list"/>
|
|
<result property="executeConfig" column="action_execute_config"/>
|
|
<result property="recoverConfig" column="action_recover_config"/>
|
|
</collection>
|
|
</resultMap>
|
|
|
|
<insert id="insertDcEmergencyPlans" parameterType="DcEmergencyPlans" useGeneratedKeys="true" keyColumn="id"
|
|
keyProperty="id">
|
|
insert into dc_emergency_plans
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
<if test="planName != null and planName != ''">plan_name,</if>
|
|
<if test="eventType != null">event_type,</if>
|
|
<if test="triggerMechanism != null and triggerMechanism != ''">trigger_mechanism,</if>
|
|
<if test="createTime != null">create_time,</if>
|
|
<if test="updateTime != null">update_time,</if>
|
|
<if test="deviceType != null and deviceType != ''">device_type,</if>
|
|
<if test="triggeringCondition != null and triggeringCondition != ''">triggering_condition,</if>
|
|
<if test="controllableDevice != null and controllableDevice != ''">controllable_device,</if>
|
|
<if test="controlCommand != null and controlCommand != ''">control_command,</if>
|
|
</trim>
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
<if test="planName != null and planName != ''">#{planName},</if>
|
|
<if test="eventType != null">#{eventType},</if>
|
|
<if test="triggerMechanism != null and triggerMechanism != ''">#{triggerMechanism},</if>
|
|
<if test="createTime != null">#{createTime},</if>
|
|
<if test="updateTime != null">#{updateTime},</if>
|
|
<if test="deviceType != null and deviceType != ''">#{deviceType},</if>
|
|
<if test="triggeringCondition != null and triggeringCondition != ''">#{triggeringCondition},</if>
|
|
<if test="controllableDevice != null and controllableDevice != ''">#{controllableDevice},</if>
|
|
<if test="controlCommand != null and controlCommand != ''">#{controlCommand},</if>
|
|
</trim>
|
|
</insert>
|
|
|
|
<update id="updateDcEmergencyPlans" parameterType="DcEmergencyPlans">
|
|
update dc_emergency_plans
|
|
set plan_name = #{planName},
|
|
event_type = #{eventType},
|
|
trigger_mechanism = #{triggerMechanism},
|
|
update_time = #{updateTime},
|
|
device_type = #{deviceType},
|
|
triggering_condition = #{triggeringCondition},
|
|
controllable_device = #{controllableDevice},
|
|
control_command = #{controlCommand}
|
|
where id = #{id}
|
|
</update>
|
|
|
|
<delete id="deleteDcEmergencyPlans" parameterType="String">
|
|
delete from dc_emergency_plans where id in
|
|
<foreach item="id" collection="array" open="(" separator="," close=")">
|
|
#{id}
|
|
</foreach>
|
|
</delete>
|
|
<sql id="selectDcEmergencyPlansListAll">
|
|
select t1.id,
|
|
t1.plan_name,
|
|
t1.event_type,
|
|
t1.trigger_mechanism,
|
|
t1.create_time,
|
|
t1.update_time,
|
|
t1.device_type,
|
|
t1.triggering_condition,
|
|
t1.controllable_device,
|
|
t1.control_command,
|
|
t2.id as action_id,
|
|
t2.emergency_plans_id as action_emergency_plans_id,
|
|
t2.device_type as action_device_type,
|
|
t2.create_time as action_create_time,
|
|
t2.update_time as action_update_time,
|
|
t2.search_rule as action_search_rule,
|
|
t2.`number` as action_number,
|
|
t2.device_list as action_device_list,
|
|
t2.execute_config as action_execute_config,
|
|
t2.recover_config as action_recover_config
|
|
from dc_emergency_plans t1
|
|
left join dc_execute_action t2
|
|
on t1.id = t2.emergency_plans_id
|
|
</sql>
|
|
|
|
<select id="selectDcEmergencyPlansList" parameterType="DcEmergencyPlans" resultMap="DcEmergencyPlansResult">
|
|
select t1.id,
|
|
t1.plan_name,
|
|
t1.event_type,
|
|
t1.trigger_mechanism,
|
|
t1.create_time,
|
|
t1.update_time,
|
|
t1.device_type,
|
|
t1.triggering_condition,
|
|
t1.controllable_device,
|
|
t1.control_command
|
|
from dc_emergency_plans t1
|
|
<where>
|
|
<if test="planName != null and planName != ''"> and plan_name like concat('%', #{planName}, '%')</if>
|
|
<if test="eventType != 0 "> and event_type = #{eventType}</if>
|
|
<if test="triggerMechanism != null and triggerMechanism != ''">
|
|
and trigger_mechanism =#{triggerMechanism}
|
|
</if>
|
|
</where>
|
|
order by t1.id desc
|
|
</select>
|
|
|
|
<select id="selectDcEmergencyPlans" parameterType="Integer" resultMap="DcEmergencyPlansResult">
|
|
<include refid="selectDcEmergencyPlansListAll"/>
|
|
where t1.id = #{id}
|
|
</select>
|
|
|
|
<select id="selectDcEmergencyPlansByEventType" parameterType="dcEvent" resultMap="DcEmergencyPlansResult">
|
|
<include refid="selectDcEmergencyPlansListAll"/>
|
|
where t1.event_type = #{eventType}
|
|
</select>
|
|
|
|
<select id="selectDcEmergencyPlansByWarningType" parameterType="int" resultMap="DcEmergencyPlansResult">
|
|
<include refid="selectDcEmergencyPlansListAll"/>
|
|
where t1.event_type = #{eventType}
|
|
</select>
|
|
|
|
|
|
</mapper>
|
|
|