RobotKnowledgeBaseMapper.xml 5.13 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.RobotKnowledgeBaseMapper" >
  <resultMap id="BaseResultMap" type="com.yoho.search.dal.model.RobotKnowledgeBase" >
    <id column="id" property="id" jdbcType="INTEGER" />
    <result column="max_sort_id" property="maxSortId" jdbcType="INTEGER" />
    <result column="middle_sort_id" property="middleSortId" jdbcType="INTEGER" />
    <result column="small_sort_id" property="smallSortId" jdbcType="INTEGER" />
    <result column="keywords" property="keywords" jdbcType="VARCHAR" />
    <result column="synonym" property="synonym" jdbcType="VARCHAR" />
    <result column="founder" property="founder" jdbcType="INTEGER" />
    <result column="create_time" property="createTime" jdbcType="INTEGER" />
  </resultMap>
  <sql id="Base_Column_List" >
    id, max_sort_id, middle_sort_id, small_sort_id, keywords, synonym, founder, create_time
  </sql>
  <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer" >
    select 
    <include refid="Base_Column_List" />
    from robot_knowledge_base
    where id = #{id,jdbcType=INTEGER}
  </select>
  <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer" >
    delete from robot_knowledge_base
    where id = #{id,jdbcType=INTEGER}
  </delete>
  <insert id="insert" parameterType="com.yoho.search.dal.model.RobotKnowledgeBase" >
    insert into robot_knowledge_base (id, max_sort_id, middle_sort_id, 
      small_sort_id, keywords, synonym, 
      founder, create_time)
    values (#{id,jdbcType=INTEGER}, #{maxSortId,jdbcType=INTEGER}, #{middleSortId,jdbcType=INTEGER}, 
      #{smallSortId,jdbcType=INTEGER}, #{keywords,jdbcType=VARCHAR}, #{synonym,jdbcType=VARCHAR}, 
      #{founder,jdbcType=INTEGER}, #{createTime,jdbcType=INTEGER})
  </insert>
  <insert id="insertSelective" parameterType="com.yoho.search.dal.model.RobotKnowledgeBase" >
    insert into robot_knowledge_base
    <trim prefix="(" suffix=")" suffixOverrides="," >
      <if test="id != null" >
        id,
      </if>
      <if test="maxSortId != null" >
        max_sort_id,
      </if>
      <if test="middleSortId != null" >
        middle_sort_id,
      </if>
      <if test="smallSortId != null" >
        small_sort_id,
      </if>
      <if test="keywords != null" >
        keywords,
      </if>
      <if test="synonym != null" >
        synonym,
      </if>
      <if test="founder != null" >
        founder,
      </if>
      <if test="createTime != null" >
        create_time,
      </if>
    </trim>
    <trim prefix="values (" suffix=")" suffixOverrides="," >
      <if test="id != null" >
        #{id,jdbcType=INTEGER},
      </if>
      <if test="maxSortId != null" >
        #{maxSortId,jdbcType=INTEGER},
      </if>
      <if test="middleSortId != null" >
        #{middleSortId,jdbcType=INTEGER},
      </if>
      <if test="smallSortId != null" >
        #{smallSortId,jdbcType=INTEGER},
      </if>
      <if test="keywords != null" >
        #{keywords,jdbcType=VARCHAR},
      </if>
      <if test="synonym != null" >
        #{synonym,jdbcType=VARCHAR},
      </if>
      <if test="founder != null" >
        #{founder,jdbcType=INTEGER},
      </if>
      <if test="createTime != null" >
        #{createTime,jdbcType=INTEGER},
      </if>
    </trim>
  </insert>
  <update id="updateByPrimaryKeySelective" parameterType="com.yoho.search.dal.model.RobotKnowledgeBase" >
    update robot_knowledge_base
    <set >
      <if test="maxSortId != null" >
        max_sort_id = #{maxSortId,jdbcType=INTEGER},
      </if>
      <if test="middleSortId != null" >
        middle_sort_id = #{middleSortId,jdbcType=INTEGER},
      </if>
      <if test="smallSortId != null" >
        small_sort_id = #{smallSortId,jdbcType=INTEGER},
      </if>
      <if test="keywords != null" >
        keywords = #{keywords,jdbcType=VARCHAR},
      </if>
      <if test="synonym != null" >
        synonym = #{synonym,jdbcType=VARCHAR},
      </if>
      <if test="founder != null" >
        founder = #{founder,jdbcType=INTEGER},
      </if>
      <if test="createTime != null" >
        create_time = #{createTime,jdbcType=INTEGER},
      </if>
    </set>
    where id = #{id,jdbcType=INTEGER}
  </update>
  <update id="updateByPrimaryKey" parameterType="com.yoho.search.dal.model.RobotKnowledgeBase" >
    update robot_knowledge_base
    set max_sort_id = #{maxSortId,jdbcType=INTEGER},
      middle_sort_id = #{middleSortId,jdbcType=INTEGER},
      small_sort_id = #{smallSortId,jdbcType=INTEGER},
      keywords = #{keywords,jdbcType=VARCHAR},
      synonym = #{synonym,jdbcType=VARCHAR},
      founder = #{founder,jdbcType=INTEGER},
      create_time = #{createTime,jdbcType=INTEGER}
    where id = #{id,jdbcType=INTEGER}
  </update>
    <select id="selectCount" resultType="java.lang.Integer" timeout="20000">
        SELECT count(1) FROM robot_knowledge_base
    </select>
    <select id="selectPageLists" resultMap="BaseResultMap" timeout="20000">
        select
        <include refid="Base_Column_List" />
        from robot_knowledge_base limit #{offset},#{pageSize}
    </select>
</mapper>