guyue
2 天以前 d3b6555513c6c0e283bd6e891d4e080aefa6003a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?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.linghu.mapper.KeywordTaskMapper">
 
    <resultMap id="BaseResultMap" type="com.linghu.model.entity.KeywordTask">
            <id property="id" column="id" jdbcType="INTEGER"/>
            <result property="keyword_id" column="keyword_id" jdbcType="INTEGER"/>
            <result property="task_id" column="task_id" jdbcType="VARCHAR"/>
    </resultMap>
 
    <sql id="Base_Column_List">
        id,keyword_id,task_id
    </sql>
</mapper>