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.
18 lines
993 B
18 lines
993 B
<?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.yami.shop.quartz.dao.ScheduleJobLogMapper">
|
|
<resultMap id="BaseResultMap" type="com.yami.shop.quartz.model.ScheduleJobLog">
|
|
<!--
|
|
WARNING - @mbg.generated
|
|
-->
|
|
<id column="log_id" jdbcType="BIGINT" property="logId" />
|
|
<result column="job_id" jdbcType="BIGINT" property="jobId" />
|
|
<result column="bean_name" jdbcType="VARCHAR" property="beanName" />
|
|
<result column="method_name" jdbcType="VARCHAR" property="methodName" />
|
|
<result column="params" jdbcType="VARCHAR" property="params" />
|
|
<result column="status" jdbcType="TINYINT" property="status" />
|
|
<result column="error" jdbcType="VARCHAR" property="error" />
|
|
<result column="times" jdbcType="INTEGER" property="times" />
|
|
<result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
|
|
</resultMap>
|
|
</mapper> |