<?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.LightTaskPoleRelationMapper">
|
|
<resultMap id="BaseResultMap" type="com.sandu.ximon.dao.domain.LightTaskPoleRelation">
|
<id property="id" column="id" jdbcType="BIGINT"/>
|
<result property="taskId" column="task_id" jdbcType="BIGINT"/>
|
<result property="poleId" column="pole_id" jdbcType="BIGINT"/>
|
<result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
|
<result property="updateTime" column="update_time" jdbcType="TIMESTAMP"/>
|
</resultMap>
|
|
<sql id="Base_Column_List">
|
id,task_id,pole_id,
|
create_time,update_time
|
</sql>
|
</mapper>
|