| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214 | <?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.xxl.job.admin.dao.XxlJobLogDao">		<resultMap id="XxlJobLog" type="com.xxl.job.admin.core.model.XxlJobLog" >		<result column="id" property="id" />		<result column="job_group" property="jobGroup" />		<result column="job_id" property="jobId" />		<result column="glue_type" property="glueType" />		<result column="executor_address" property="executorAddress" />		<result column="executor_handler" property="executorHandler" />	    <result column="executor_param" property="executorParam" />	    	    <result column="trigger_time" property="triggerTime" />	    <result column="trigger_code" property="triggerCode" />	    <result column="trigger_msg" property="triggerMsg" />	    	    <result column="handle_time" property="handleTime" />	    <result column="handle_code" property="handleCode" />	    <result column="handle_msg" property="handleMsg" />	    	</resultMap>	<sql id="Base_Column_List">		t.id,		t.job_group,		t.job_id,		t.glue_type,		t.executor_address,		t.executor_handler,		t.executor_param,		t.trigger_time,		t.trigger_code,		t.trigger_msg,		t.handle_time,		t.handle_code,		t.handle_msg	</sql>		<select id="pageList" resultMap="XxlJobLog">		SELECT <include refid="Base_Column_List" />		FROM XXL_JOB_QRTZ_TRIGGER_LOG AS t		<trim prefix="WHERE" prefixOverrides="AND | OR" >			<if test="jobGroup gt 0">				AND t.job_group = #{jobGroup}			</if>			<if test="jobId gt 0">				AND t.job_id = #{jobId}			</if>			<if test="triggerTimeStart != null">				AND t.trigger_time <![CDATA[ >= ]]> #{triggerTimeStart}			</if>			<if test="triggerTimeEnd != null">				AND t.trigger_time <![CDATA[ <= ]]> #{triggerTimeEnd}			</if>			<if test="logStatus == 1" >				AND t.handle_code = 200			</if>			<if test="logStatus == 2" >				AND (					t.trigger_code NOT IN (0, 200) OR					t.handle_code NOT IN (0, 200)				)			</if>			<if test="logStatus == 3" >				AND t.trigger_code = 200				AND t.handle_code = 0			</if>		</trim>		ORDER BY id DESC		LIMIT #{offset}, #{pagesize}	</select>		<select id="pageListCount" resultType="int">		SELECT count(1)		FROM XXL_JOB_QRTZ_TRIGGER_LOG AS t		<trim prefix="WHERE" prefixOverrides="AND | OR" >			<if test="jobGroup gt 0">				AND t.job_group = #{jobGroup}			</if>			<if test="jobId gt 0">				AND t.job_id = #{jobId}			</if>			<if test="triggerTimeStart != null">				AND t.trigger_time <![CDATA[ >= ]]> #{triggerTimeStart}			</if>			<if test="triggerTimeEnd != null">				AND t.trigger_time <![CDATA[ <= ]]> #{triggerTimeEnd}			</if>			<if test="logStatus == 1" >				AND t.handle_code = 200			</if>			<if test="logStatus == 2" >				AND (					t.trigger_code NOT IN (0, 200) OR					t.handle_code NOT IN (0, 200)				)			</if>			<if test="logStatus == 3" >				AND t.trigger_code = 200				AND t.handle_code = 0			</if>		</trim>	</select>		<select id="load" parameterType="java.lang.Integer" resultMap="XxlJobLog">		SELECT <include refid="Base_Column_List" />		FROM XXL_JOB_QRTZ_TRIGGER_LOG AS t		WHERE t.id = #{id}	</select>		<insert id="save" parameterType="com.xxl.job.admin.core.model.XxlJobLog" useGeneratedKeys="true" keyProperty="id" >		INSERT INTO XXL_JOB_QRTZ_TRIGGER_LOG (			`job_group`,			`job_id`,			`trigger_code`,			`handle_code`		) VALUES (			#{jobGroup},			#{jobId},			#{triggerCode},			#{handleCode}		);		<!--<selectKey resultType="java.lang.Integer" order="AFTER" keyProperty="id">			SELECT LAST_INSERT_ID() 		</selectKey>-->	</insert>	<update id="updateTriggerInfo" >		UPDATE XXL_JOB_QRTZ_TRIGGER_LOG		SET		    `glue_type`= #{glueType},			`trigger_time`= #{triggerTime},			`trigger_code`= #{triggerCode},			`trigger_msg`= #{triggerMsg},			`executor_address`= #{executorAddress},			`executor_handler`=#{executorHandler},			`executor_param`= #{executorParam}		WHERE `id`= #{id}	</update>	<update id="updateHandleInfo">		UPDATE XXL_JOB_QRTZ_TRIGGER_LOG		SET 			`handle_time`= #{handleTime}, 			`handle_code`= #{handleCode},			`handle_msg`= #{handleMsg} 		WHERE `id`= #{id}	</update>		<delete id="delete" >		delete from XXL_JOB_QRTZ_TRIGGER_LOG		WHERE job_id = #{jobId}	</delete>	<select id="triggerCountByHandleCode" resultType="int" >		SELECT count(1)		FROM XXL_JOB_QRTZ_TRIGGER_LOG AS t		<trim prefix="WHERE" prefixOverrides="AND | OR" >			<if test="handleCode gt 0">				AND t.handle_code = #{handleCode}			</if>		</trim>	</select>    <select id="triggerCountByDay" resultType="java.util.Map" >		SELECT			DATE_FORMAT(trigger_time,'%Y-%m-%d') triggerDay,			COUNT(handle_code) triggerDayCount,			SUM(CASE WHEN handle_code = 0 then 1 else 0 end) as triggerDayCountRunning,			SUM(CASE WHEN handle_code = 200 then 1 else 0 end) as triggerDayCountSuc		FROM XXL_JOB_QRTZ_TRIGGER_LOG		WHERE trigger_time BETWEEN #{from} and #{to}		GROUP BY triggerDay;    </select>	<delete id="clearLog" >		delete from XXL_JOB_QRTZ_TRIGGER_LOG		<trim prefix="WHERE" prefixOverrides="AND | OR" >			<if test="jobGroup gt 0">				AND job_group = #{jobGroup}			</if>			<if test="jobId gt 0">				AND job_id = #{jobId}			</if>			<if test="clearBeforeTime != null">				AND trigger_time <![CDATA[ <= ]]> #{clearBeforeTime}			</if>			<if test="clearBeforeNum gt 0">				AND id NOT in(					SELECT id FROM(						SELECT id FROM XXL_JOB_QRTZ_TRIGGER_LOG AS t						<trim prefix="WHERE" prefixOverrides="AND | OR" >							<if test="jobGroup gt 0">								AND t.job_group = #{jobGroup}							</if>							<if test="jobId gt 0">								AND t.job_id = #{jobId}							</if>						</trim>						ORDER BY t.trigger_time desc						LIMIT 0, #{clearBeforeNum}					) t1				)			</if>		</trim>	</delete>	</mapper>
 |