<?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.sandu.ximon.dao.mapper.LightTaskQuartzLogMapper">
|
|
<resultMap id="BaseResultMap" type="com.sandu.ximon.dao.domain.LightTaskQuartzLog">
|
<id property="id" column="id" jdbcType="BIGINT"/>
|
<result property="taskId" column="task_id" jdbcType="BIGINT"/>
|
<result property="quartzId" column="quartz_id" jdbcType="BIGINT"/>
|
<result property="taskName" column="task_name" jdbcType="VARCHAR"/>
|
<result property="cronExpression" column="cron_expression" jdbcType="VARCHAR"/>
|
<result property="framePayload" column="frame_payload" jdbcType="VARCHAR"/>
|
<result property="time" column="time" jdbcType="BIGINT"/>
|
<result property="exceptionDetail" column="exception_detail" jdbcType="VARCHAR"/>
|
<result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
|
</resultMap>
|
|
<sql id="Base_Column_List">
|
id,task_id,quartz_id,
|
task_name,cron_expression,frame_payload,
|
time,exception_detail,create_time
|
</sql>
|
</mapper>
|