<?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.ruoyi.project.tr.HiddenDangerCheckJob.mapper.HiddenDangerCheckJobLogMapper">
|
|
<resultMap type="HiddenDangerCheckJobLog" id="JobLogResult">
|
<result property="jobName" column="job_name" />
|
<result property="jobGroup" column="job_group" />
|
<result property="invokeTarget" column="invoke_target" />
|
<result property="jobMessage" column="job_message" />
|
<result property="status" column="status" />
|
<result property="exceptionInfo" column="exception_info" />
|
</resultMap>
|
|
<sql id="selectJobLogVo">
|
select check_id, job_name, job_group, invoke_target, job_message, status, exception_info, create_time
|
from tr_hidden_danger_check_job_log
|
</sql>
|
|
<select id="selectJobLogList" parameterType="JobLog" resultMap="JobLogResult">
|
<include refid="selectJobLogVo"/>
|
<where>
|
<if test="jobName != null and jobName != ''">
|
AND job_name like concat('%', #{jobName}, '%')
|
</if>
|
<if test="jobGroup != null and jobGroup != ''">
|
AND job_group = #{jobGroup}
|
</if>
|
<if test="status != null and status != ''">
|
AND status = #{status}
|
</if>
|
<if test="invokeTarget != null and invokeTarget != ''">
|
AND invoke_target like concat('%', #{invokeTarget}, '%')
|
</if>
|
<if test="params.beginTime != null and params.beginTime != ''"><!-- 开始时间检索 -->
|
and date_format(create_time,'%y%m%d') >= date_format(#{params.beginTime},'%y%m%d')
|
</if>
|
<if test="params.endTime != null and params.endTime != ''"><!-- 结束时间检索 -->
|
and date_format(create_time,'%y%m%d') <= date_format(#{params.endTime},'%y%m%d')
|
</if>
|
</where>
|
</select>
|
|
<select id="selectJobLogAll" resultMap="JobLogResult">
|
<include refid="selectJobLogVo"/>
|
</select>
|
|
<select id="selectJobLogById" parameterType="Long" resultMap="JobLogResult">
|
<include refid="selectJobLogVo"/>
|
where check_job_log_id = #{checkJobLogId}
|
</select>
|
|
<delete id="deleteJobLogById" parameterType="Long">
|
delete from tr_hidden_danger_check_job_log where check_job_log_id = #{checkJobLogId}
|
</delete>
|
|
<delete id="deleteJobLogByIds" parameterType="String">
|
delete from tr_hidden_danger_check_job_log where check_job_log_id in
|
<foreach collection="array" item="checkJobLogId" open="(" separator="," close=")">
|
#{checkJobLogId}
|
</foreach>
|
</delete>
|
|
<update id="cleanJobLog">
|
truncate table tr_hidden_danger_check_job_log
|
</update>
|
|
<insert id="insertJobLog" parameterType="JobLog">
|
insert into tr_hidden_danger_check_job_log(
|
<if test="checkJobLogId != null and checkJobLogId != 0">check_job_log_id,</if>
|
<if test="jobName != null and jobName != ''">job_name,</if>
|
<if test="jobGroup != null and jobGroup != ''">job_group,</if>
|
<if test="invokeTarget != null and invokeTarget != ''">invoke_target,</if>
|
<if test="jobMessage != null and jobMessage != ''">job_message,</if>
|
<if test="status != null and status != ''">status,</if>
|
<if test="exceptionInfo != null and exceptionInfo != ''">exception_info,</if>
|
create_time
|
)values(
|
<if test="checkJobLogId != null and checkJobLogId != 0">#{checkJobLogId},</if>
|
<if test="jobName != null and jobName != ''">#{jobName},</if>
|
<if test="jobGroup != null and jobGroup != ''">#{jobGroup},</if>
|
<if test="invokeTarget != null and invokeTarget != ''">#{invokeTarget},</if>
|
<if test="jobMessage != null and jobMessage != ''">#{jobMessage},</if>
|
<if test="status != null and status != ''">#{status},</if>
|
<if test="exceptionInfo != null and exceptionInfo != ''">#{exceptionInfo},</if>
|
sysdate()
|
)
|
</insert>
|
|
|
|
|
|
<select id="getJobLogByCheckUserId"
|
resultType="com.ruoyi.project.tr.HiddenDangerCheckJob.domain.HiddenDangerCheckJobLog">
|
select * from tr_hidden_danger_check_job_log where check_user_id = #{handleLiabilityPersonId}
|
</select>
|
|
</mapper>
|