SalesCategorySearchLabelMapper.xml 5.86 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.SalesCategorySearchLabelMapper">

    <resultMap id="BaseResultMap" type="com.yoho.search.dal.model.SalesCategorySearchLabel">
        <id column="id" property="id" jdbcType="INTEGER"/>
        <result column="category_id" property="categoryId" jdbcType="INTEGER"/>
        <result column="label_id" property="labelId" jdbcType="INTEGER"/>
        <result column="order_by" property="orderBy" jdbcType="INTEGER"/>
        <result column="status" property="status" jdbcType="INTEGER"/>
        <result column="create_time" property="createTime" jdbcType="INTEGER"/>
        <result column="update_time" property="updateTime" jdbcType="INTEGER"/>
        <result column="edit_user" property="editUser" jdbcType="VARCHAR"/>
    </resultMap>

    <sql id="Base_Column_List">
      id, category_id, label_id, order_by, status, create_time, update_time, edit_user
    </sql>

    <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer">
        select
        <include refid="Base_Column_List"/>
        from sales_category_search_label
        where id = #{id,jdbcType=INTEGER}
    </select>

    <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
      delete from sales_category_search_label
      where id = #{id,jdbcType=INTEGER}
    </delete>

    <insert id="insert" parameterType="com.yoho.search.dal.model.SalesCategorySearchLabel">
        insert into sales_category_search_label (id, category_id, label_id,
          order_by, status, create_time,
          update_time, edit_user)
        values (#{id,jdbcType=INTEGER}, #{categoryId,jdbcType=INTEGER}, #{labelId,jdbcType=INTEGER},
          #{orderBy,jdbcType=INTEGER}, #{status,jdbcType=INTEGER}, #{createTime,jdbcType=INTEGER},
          #{updateTime,jdbcType=INTEGER}, #{editUser,jdbcType=VARCHAR})
    </insert>

    <insert id="insertSelective" parameterType="com.yoho.search.dal.model.SalesCategorySearchLabel">
        insert into sales_category_search_label
        <trim prefix="(" suffix=")" suffixOverrides=",">
            <if test="id != null">
                id,
            </if>
            <if test="categoryId != null">
                category_id,
            </if>
            <if test="labelId != null">
                label_id,
            </if>
            <if test="orderBy != null">
                order_by,
            </if>
            <if test="status != null">
                status,
            </if>
            <if test="createTime != null">
                create_time,
            </if>
            <if test="updateTime != null">
                update_time,
            </if>
            <if test="editUser != null">
                edit_user,
            </if>
        </trim>
        <trim prefix="values (" suffix=")" suffixOverrides=",">
            <if test="id != null">
                #{id,jdbcType=INTEGER},
            </if>
            <if test="categoryId != null">
                #{categoryId,jdbcType=INTEGER},
            </if>
            <if test="labelId != null">
                #{labelId,jdbcType=INTEGER},
            </if>
            <if test="orderBy != null">
                #{orderBy,jdbcType=INTEGER},
            </if>
            <if test="status != null">
                #{status,jdbcType=INTEGER},
            </if>
            <if test="createTime != null">
                #{createTime,jdbcType=INTEGER},
            </if>
            <if test="updateTime != null">
                #{updateTime,jdbcType=INTEGER},
            </if>
            <if test="editUser != null">
                #{editUser,jdbcType=VARCHAR},
            </if>
        </trim>
    </insert>

    <update id="updateByPrimaryKeySelective" parameterType="com.yoho.search.dal.model.SalesCategorySearchLabel">
        update sales_category_search_label
        <set>
            <if test="categoryId != null">
                category_id = #{categoryId,jdbcType=INTEGER},
            </if>
            <if test="labelId != null">
                label_id = #{labelId,jdbcType=INTEGER},
            </if>
            <if test="orderBy != null">
                order_by = #{orderBy,jdbcType=INTEGER},
            </if>
            <if test="status != null">
                status = #{status,jdbcType=INTEGER},
            </if>
            <if test="createTime != null">
                create_time = #{createTime,jdbcType=INTEGER},
            </if>
            <if test="updateTime != null">
                update_time = #{updateTime,jdbcType=INTEGER},
            </if>
            <if test="editUser != null">
                edit_user = #{editUser,jdbcType=VARCHAR},
            </if>
        </set>
        where id = #{id,jdbcType=INTEGER}
    </update>

    <update id="updateByPrimaryKey" parameterType="com.yoho.search.dal.model.SalesCategorySearchLabel">
        update sales_category_search_label
        set category_id = #{categoryId,jdbcType=INTEGER},
          label_id = #{labelId,jdbcType=INTEGER},
          order_by = #{orderBy,jdbcType=INTEGER},
          status = #{status,jdbcType=INTEGER},
          create_time = #{createTime,jdbcType=INTEGER},
          update_time = #{updateTime,jdbcType=INTEGER},
          edit_user = #{editUser,jdbcType=VARCHAR}
        where id = #{id,jdbcType=INTEGER}
    </update>

    <select id="selectCount" resultType="java.lang.Integer" timeout="20000">
        SELECT count(1) FROM sales_category_search_label
    </select>

    <select id="selectPageList" resultMap="BaseResultMap" timeout="20000">
        select
        <include refid="Base_Column_List" />
        from sales_category_search_label limit #{offset},#{pageSize}
    </select>

</mapper>