guyue
9 天以前 a9e958ce3675c4950ceddd3fd6f939cdf0d2bc5a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?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.QuestionResultMapper">
 
    <resultMap id="BaseResultMap" type="com.linghu.model.entity.QuestionResultList">
            <id property="id" column="id" jdbcType="BIGINT"/>
            <result property="keyword_task_id" column="keyword_task_id" jdbcType="VARCHAR"/>
            <result property="question" column="question" jdbcType="VARCHAR"/>
            <result property="response" column="response" jdbcType="VARCHAR"/>
            <result property="extracted_count" column="extracted_count" jdbcType="INTEGER"/>
            <result property="timestamp" column="timestamp" jdbcType="TIMESTAMP"/>
            <result property="status" column="status" jdbcType="VARCHAR"/>
            <result property="error" column="error" jdbcType="VARCHAR"/>
            <result property="num" column="num" jdbcType="INTEGER"/>
            <result property="batch_num" column="batch_num" jdbcType="INTEGER"/>
            <result property="create_time" column="create_time" jdbcType="TIMESTAMP"/>
        <result property="keyword_id" column="keyword_id" jdbcType="INTEGER"/>
    </resultMap>
 
    <sql id="Base_Column_List">
        id,keyword_task_id,question,
        response,extracted_count,timestamp,
        status,error,num,
        batch_num,create_time,keyword_id
    </sql>
</mapper>