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.
166 lines
7.4 KiB
166 lines
7.4 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.psdc.mapper.PsdcTimerMapper">
|
|
<resultMap type="com.psdc.entity.PsdcTimer" id="PsdcTimerMap">
|
|
<result property="timerId" column="timer_id" />
|
|
<result property="deviceId" column="device_id" />
|
|
<result property="userId" column="user_id" />
|
|
<result property="runday" column="runday" />
|
|
<result property="runtime" column="runtime" />
|
|
<result property="controlKey" column="control_key" />
|
|
<result property="controlContext" column="control_context" />
|
|
<result property="controlValue" column="control_value" />
|
|
<result property="cronText" column="cron_text" />
|
|
<result property="jobId" column="job_id"/>
|
|
<result property="timerStatus" column="timer_status" />
|
|
<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>
|
|
|
|
<resultMap type="com.psdc.entity.vo.PsdcTimerVo" id="PsdcTimerVoMap">
|
|
<result property="timerId" column="timer_id" />
|
|
<result property="deviceId" column="device_id" />
|
|
<result property="deviceName" column="device_name" />
|
|
<result property="userId" column="user_id" />
|
|
<result property="runday" column="runday" />
|
|
<result property="runtime" column="runtime" />
|
|
<result property="controlKey" column="control_key" />
|
|
<result property="controlContext" column="control_context" />
|
|
<result property="controlValue" column="control_value" />
|
|
<result property="cronText" column="cron_text" />
|
|
<result property="timerStatus" column="timer_status" />
|
|
<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>
|
|
|
|
<!-- 通过ID查询单条数据 -->
|
|
<select id="queryById" resultMap="PsdcTimerMap">
|
|
select
|
|
timer_id,device_id,user_id,runday,runtime,control_key,control_context,control_value,cron_text,job_id,timer_status,create_by,create_time,update_by,update_time
|
|
from psdc_timer
|
|
where timer_id = #{timerId}
|
|
</select>
|
|
|
|
<!-- 通过ID查询单条数据 -->
|
|
<select id="queryById2" resultMap="PsdcTimerVoMap">
|
|
select
|
|
pt.timer_id,pt.device_id,pd.device_name,pt.user_id,pt.runday,pt.runtime,pt.control_key,pt.control_context,pt.job_id,pt.control_value,pt.cron_text,pt.timer_status,pt.create_by,pt.create_time,pt.update_by,pt.update_time
|
|
from psdc_timer pt left join psdc_device pd on pt.device_id = pd.device_id
|
|
where timer_id = #{timerId}
|
|
</select>
|
|
|
|
<!--分页查询指定行数据-->
|
|
<select id="queryAllByLimit" resultMap="PsdcTimerVoMap">
|
|
select
|
|
pt.timer_id,pt.device_id,pd.device_name,pt.user_id,pt.runday,pt.runtime,pt.control_key,pt.control_context,pt.control_value,pt.cron_text,pt.job_id,pt.timer_status,pt.create_by,pt.create_time,pt.update_by,pt.update_time
|
|
from psdc_timer pt left join psdc_device pd on pt.device_id = pd.device_id
|
|
<where>
|
|
<if test="timerId != null and timerId != ''">
|
|
and pt.timer_id = #{timerId}
|
|
</if>
|
|
<if test="deviceId != null and deviceId != ''">
|
|
and pt.device_id = #{deviceId}
|
|
</if>
|
|
<if test="userId != null and userId != ''">
|
|
and pt.user_id = #{userId}
|
|
</if>
|
|
<if test="runday != null and runday != ''">
|
|
and pt.runday = #{runday}
|
|
</if>
|
|
<if test="runtime != null and runtime != ''">
|
|
and pt.runtime = #{runtime}
|
|
</if>
|
|
<if test="controlKey != null and controlKey != ''">
|
|
and pt.control_key = #{controlKey}
|
|
</if>
|
|
<if test="controlContext != null and controlContext != ''">
|
|
and pt.control_context = #{controlContext}
|
|
</if>
|
|
<if test="timerStatus != null and timerStatus != ''">
|
|
and pt.timer_status = #{timerStatus}
|
|
</if>
|
|
<if test="createStart != null and createStart != ''"><!-- 开始时间检索 -->
|
|
AND date_format(pt.create_time,'%y%m%d') >= date_format(#{createStart},'%y%m%d')
|
|
</if>
|
|
<if test="createEnd != null and createEnd != ''"><!-- 结束时间检索 -->
|
|
AND date_format(pt.create_time,'%y%m%d') <= date_format(#{createEnd},'%y%m%d')
|
|
</if>
|
|
</where>
|
|
</select>
|
|
|
|
|
|
<!--新增数据-->
|
|
<insert id="insert" >
|
|
insert into psdc_timer(device_id,user_id,runday,runtime,control_key,control_context,control_value,cron_text,job_id,timer_status,create_by,create_time)
|
|
values (#{deviceId},#{userId},#{runday},#{runtime},#{controlKey},#{controlContext},#{controlValue},#{cronText},#{jobId},#{timerStatus},#{createBy},sysdate())
|
|
</insert>
|
|
|
|
|
|
|
|
<!-- 更新数据 -->
|
|
<update id="update">
|
|
update psdc_timer
|
|
<set>
|
|
<if test="timerId != null and timerId != ''">
|
|
timer_id = #{timerId},
|
|
</if>
|
|
<if test="deviceId != null and deviceId != ''">
|
|
device_id = #{deviceId},
|
|
</if>
|
|
<if test="userId != null and userId != ''">
|
|
user_id = #{userId},
|
|
</if>
|
|
<if test="runday != null and runday != ''">
|
|
runday = #{runday},
|
|
</if>
|
|
<if test="runtime != null and runtime != ''">
|
|
runtime = #{runtime},
|
|
</if>
|
|
<if test="controlKey != null and controlKey != ''">
|
|
control_key = #{controlKey},
|
|
</if>
|
|
<if test="controlContext != null and controlContext != ''">
|
|
control_context = #{controlContext},
|
|
</if>
|
|
<if test="controlValue != null and controlValue != ''">
|
|
control_value = #{controlValue},
|
|
</if>
|
|
<if test="cronText != null and cronText != ''">
|
|
cron_text = #{cronText},
|
|
</if>
|
|
<if test="jobId != null and jobId != ''">
|
|
job_id = #{jobId},
|
|
</if>
|
|
<if test="timerStatus != null and timerStatus != ''">
|
|
timer_status = #{timerStatus},
|
|
</if>
|
|
<if test="createBy != null and createBy != ''">
|
|
create_by = #{createBy},
|
|
</if>
|
|
<if test="createTime != null and createTime != ''">
|
|
create_time = #{createTime},
|
|
</if>
|
|
<if test="updateBy != null and updateBy != ''">
|
|
update_by = #{updateBy},
|
|
</if>
|
|
<if test="updateTime != null and updateTime != ''">
|
|
update_time = #{updateTime},
|
|
</if>
|
|
</set>
|
|
where timer_id = #{timerId}
|
|
</update>
|
|
|
|
<!-- 修改任务状态-->
|
|
<update id="updateStatus">
|
|
update psdc_timer set timer_status = #{status} where timer_id = #{timerId}
|
|
</update>
|
|
|
|
<!--通过主键删除-->
|
|
<delete id="deleteById">
|
|
delete from psdc_timer where timer_id = #{timerId}
|
|
</delete>
|
|
</mapper> |