qihang-ecom-erp-open/sys-api/src/main/resources/mapper/SysTaskLogsMapper.xml

23 lines
997 B
XML
Raw Normal View History

2024-03-24 17:03:24 +08:00
<?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">
2025-03-02 01:40:08 +08:00
<mapper namespace="cn.qihangerp.sys.mapper.SysTaskLogsMapper">
2024-03-24 17:03:24 +08:00
2025-03-02 01:40:08 +08:00
<resultMap id="BaseResultMap" type="cn.qihangerp.sys.domain.SysTaskLogs">
2024-03-24 17:03:24 +08:00
<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>