23 lines
1001 B
XML
23 lines
1001 B
XML
|
|
<?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.qihang.sys.api.mapper.SysTaskLogsMapper">
|
||
|
|
|
||
|
|
<resultMap id="BaseResultMap" type="com.qihang.sys.api.domain.SysTaskLogs">
|
||
|
|
<id property="id" column="id" jdbcType="BIGINT"/>
|
||
|
|
<result property="taskId" column="task_id" jdbcType="INTEGER"/>
|
||
|
|
<result property="result" column="result" jdbcType="VARCHAR"/>
|
||
|
|
<result property="startTime" column="start_time" jdbcType="TIMESTAMP"/>
|
||
|
|
<result property="endTime" column="end_time" jdbcType="TIMESTAMP"/>
|
||
|
|
<result property="status" column="status" jdbcType="INTEGER"/>
|
||
|
|
<result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
|
||
|
|
</resultMap>
|
||
|
|
|
||
|
|
<sql id="Base_Column_List">
|
||
|
|
id,task_id,result,
|
||
|
|
start_time,end_time,status,
|
||
|
|
create_time
|
||
|
|
</sql>
|
||
|
|
</mapper>
|