RobotQuestionMapper.xml 7.91 KB
<?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.yoho.search.dal.RobotQuestionMapper">
    <resultMap id="BaseResultMap" type="com.yoho.search.dal.model.RobotQuestion">
        <id column="id" property="id" jdbcType="INTEGER"/>
        <result column="sort_id" property="sortId" jdbcType="INTEGER"/>
        <result column="question" property="question" jdbcType="VARCHAR"/>
        <result column="pid" property="pid" jdbcType="INTEGER"/>
        <result column="create_time" property="createTime" jdbcType="INTEGER"/>
        <result column="is_disable" property="isDisable" jdbcType="INTEGER"/>
        <result column="effect_time" property="effectTime" jdbcType="INTEGER"/>
        <result column="update_pid" property="updatePid" jdbcType="INTEGER"/>
        <result column="update_time" property="updateTime" jdbcType="INTEGER"/>
        <result column="question_seq" property="questionSeq" jdbcType="INTEGER"/>
        <result column="click_times" property="clickTimes" jdbcType="INTEGER"/>
        <result column="answer" property="answer" jdbcType="LONGVARCHAR"/>
        <result column="keywords" property="keywords" jdbcType="LONGVARCHAR"/>
    </resultMap>
    <sql id="Base_Column_List">
    id, sort_id, question, pid, create_time, is_disable, effect_time, update_pid, update_time, 
    question_seq, click_times,answer,keywords
  </sql>
    <select id="count" resultType="java.lang.Integer" timeout="20000">
        SELECT count(id) FROM robot_question
    </select>
    <select id="getPageLists" resultMap="BaseResultMap" timeout="20000">
        select
        <include refid="Base_Column_List"/>
        from robot_question limit #{offset},#{pageSize}
    </select>
    <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer">
        select
        <include refid="Base_Column_List"/>
        from robot_question
        where id = #{id,jdbcType=INTEGER}
    </select>
    <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
    delete from robot_question
    where id = #{id,jdbcType=INTEGER}
  </delete>
    <insert id="insert" parameterType="com.yoho.search.dal.model.RobotQuestion">
    insert into robot_question (id, sort_id, question, 
      pid, create_time, is_disable, 
      effect_time, update_pid, update_time, 
      question_seq, click_times, answer,keywords
      )
    values (#{id,jdbcType=INTEGER}, #{sortId,jdbcType=INTEGER}, #{question,jdbcType=VARCHAR}, 
      #{pid,jdbcType=INTEGER}, #{createTime,jdbcType=INTEGER}, #{isDisable,jdbcType=INTEGER}, 
      #{effectTime,jdbcType=INTEGER}, #{updatePid,jdbcType=INTEGER}, #{updateTime,jdbcType=INTEGER}, 
      #{questionSeq,jdbcType=INTEGER}, #{clickTimes,jdbcType=INTEGER}, #{answer,jdbcType=LONGVARCHAR},
       #{keywords,jdbcType=LONGVARCHAR}
      )
  </insert>
    <insert id="insertSelective" parameterType="com.yoho.search.dal.model.RobotQuestion">
        insert into robot_question
        <trim prefix="(" suffix=")" suffixOverrides=",">
            <if test="id != null">
                id,
            </if>
            <if test="sortId != null">
                sort_id,
            </if>
            <if test="question != null">
                question,
            </if>
            <if test="pid != null">
                pid,
            </if>
            <if test="createTime != null">
                create_time,
            </if>
            <if test="isDisable != null">
                is_disable,
            </if>
            <if test="effectTime != null">
                effect_time,
            </if>
            <if test="updatePid != null">
                update_pid,
            </if>
            <if test="updateTime != null">
                update_time,
            </if>
            <if test="questionSeq != null">
                question_seq,
            </if>
            <if test="clickTimes != null">
                click_times,
            </if>
            <if test="answer != null">
                answer,
            </if>
            <if test="keywords != null">
                keywords,
            </if>
        </trim>
        <trim prefix="values (" suffix=")" suffixOverrides=",">
            <if test="id != null">
                #{id,jdbcType=INTEGER},
            </if>
            <if test="sortId != null">
                #{sortId,jdbcType=INTEGER},
            </if>
            <if test="question != null">
                #{question,jdbcType=VARCHAR},
            </if>
            <if test="pid != null">
                #{pid,jdbcType=INTEGER},
            </if>
            <if test="createTime != null">
                #{createTime,jdbcType=INTEGER},
            </if>
            <if test="isDisable != null">
                #{isDisable,jdbcType=INTEGER},
            </if>
            <if test="effectTime != null">
                #{effectTime,jdbcType=INTEGER},
            </if>
            <if test="updatePid != null">
                #{updatePid,jdbcType=INTEGER},
            </if>
            <if test="updateTime != null">
                #{updateTime,jdbcType=INTEGER},
            </if>
            <if test="questionSeq != null">
                #{questionSeq,jdbcType=INTEGER},
            </if>
            <if test="clickTimes != null">
                #{clickTimes,jdbcType=INTEGER},
            </if>
            <if test="answer != null">
                #{answer,jdbcType=LONGVARCHAR},
            </if>
            <if test="keywords != null">
                #{keywords,jdbcType=LONGVARCHAR},
            </if>
        </trim>
    </insert>
    <update id="updateByPrimaryKeySelective" parameterType="com.yoho.search.dal.model.RobotQuestion">
        update robot_question
        <set>
            <if test="sortId != null">
                sort_id = #{sortId,jdbcType=INTEGER},
            </if>
            <if test="question != null">
                question = #{question,jdbcType=VARCHAR},
            </if>
            <if test="pid != null">
                pid = #{pid,jdbcType=INTEGER},
            </if>
            <if test="createTime != null">
                create_time = #{createTime,jdbcType=INTEGER},
            </if>
            <if test="isDisable != null">
                is_disable = #{isDisable,jdbcType=INTEGER},
            </if>
            <if test="effectTime != null">
                effect_time = #{effectTime,jdbcType=INTEGER},
            </if>
            <if test="updatePid != null">
                update_pid = #{updatePid,jdbcType=INTEGER},
            </if>
            <if test="updateTime != null">
                update_time = #{updateTime,jdbcType=INTEGER},
            </if>
            <if test="questionSeq != null">
                question_seq = #{questionSeq,jdbcType=INTEGER},
            </if>
            <if test="clickTimes != null">
                click_times = #{clickTimes,jdbcType=INTEGER},
            </if>
            <if test="answer != null">
                answer = #{answer,jdbcType=LONGVARCHAR},
            </if>
            <if test="keywords != null">
                keywords = #{keywords,jdbcType=LONGVARCHAR},
            </if>
        </set>
        where id = #{id,jdbcType=INTEGER}
    </update>
    <update id="updateByPrimaryKey" parameterType="com.yoho.search.dal.model.RobotQuestion">
    update robot_question
    set sort_id = #{sortId,jdbcType=INTEGER},
      question = #{question,jdbcType=VARCHAR},
      pid = #{pid,jdbcType=INTEGER},
      create_time = #{createTime,jdbcType=INTEGER},
      is_disable = #{isDisable,jdbcType=INTEGER},
      effect_time = #{effectTime,jdbcType=INTEGER},
      update_pid = #{updatePid,jdbcType=INTEGER},
      update_time = #{updateTime,jdbcType=INTEGER},
      question_seq = #{questionSeq,jdbcType=INTEGER},
      click_times = #{clickTimes,jdbcType=INTEGER},
      answer = #{answer,jdbcType=LONGVARCHAR},
      keywords = #{keywords,jdbcType=LONGVARCHAR}
    where id = #{id,jdbcType=INTEGER}
  </update>
</mapper>