ProductTimingMapper.xml 8.31 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.ProductTimingMapper" >
    <resultMap id="BaseResultMap" type="com.yoho.search.dal.model.ProductTiming" >
        <id column="id" property="id" jdbcType="INTEGER" />
        <result column="product_id" property="productId" jdbcType="INTEGER" />
        <result column="shelve_time" property="shelveTime" jdbcType="INTEGER" />
        <result column="flag" property="flag" jdbcType="TINYINT" />
        <result column="create_time" property="createTime" jdbcType="INTEGER" />
        <result column="product_skn" property="productSkn" jdbcType="INTEGER" />
        <result column="advance_end_time" property="advanceEndTime" jdbcType="INTEGER" />
        <result column="out_sale_time" property="outSaleTime" jdbcType="INTEGER" />
        <result column="advance_begin_time" property="advanceBeginTime" jdbcType="INTEGER" />
        <result column="on_new_time" property="onNewTime" jdbcType="INTEGER" />
        <result column="out_sale_flag" property="outSaleFlag" jdbcType="TINYINT" />
        <result column="on_sale_flag" property="onSaleFlag" jdbcType="TINYINT" />
    </resultMap>
    <sql id="Base_Column_List" >
        id, product_id, shelve_time, flag, create_time, product_skn, advance_end_time, out_sale_time,
        advance_begin_time, on_new_time, out_sale_flag, on_sale_flag
    </sql>
    <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer" >
        select
        <include refid="Base_Column_List" />
        from product_timing
        where id = #{id,jdbcType=INTEGER} limit 1
    </select>
    <select id="selectBySkn" resultMap="BaseResultMap" parameterType="java.lang.Integer" >
        select
        <include refid="Base_Column_List" />
        from product_timing
        where product_skn = #{skn,jdbcType=INTEGER} limit 1
    </select>
    <resultMap id="SknMap"  type="HashMap">
        <result property="key" column="product_skn" />
        <result property="value" column="out_sale_time" />
    </resultMap>
    <select id="selectBySkns" resultMap="BaseResultMap">
        select
        <include refid="Base_Column_List" />
        from product_timing where product_skn in
        <foreach item="item" index="index" collection="list"
                 open="(" separator="," close=")">
            #{item}
        </foreach>
    </select>
    <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer" >
        delete from product_timing
        where id = #{id,jdbcType=INTEGER}
    </delete>
    <insert id="insert" parameterType="com.yoho.search.dal.model.ProductTiming" >
        insert into product_timing (id, product_id, shelve_time,
        flag, create_time, product_skn,
        advance_end_time, out_sale_time, advance_begin_time,
        on_new_time, out_sale_flag, on_sale_flag
        )
        values (#{id,jdbcType=INTEGER}, #{productId,jdbcType=INTEGER}, #{shelveTime,jdbcType=INTEGER},
        #{flag,jdbcType=TINYINT}, #{createTime,jdbcType=INTEGER}, #{productSkn,jdbcType=INTEGER},
        #{advanceEndTime,jdbcType=INTEGER}, #{outSaleTime,jdbcType=INTEGER}, #{advanceBeginTime,jdbcType=INTEGER},
        #{onNewTime,jdbcType=INTEGER}, #{outSaleFlag,jdbcType=TINYINT}, #{onSaleFlag,jdbcType=TINYINT}
        )
    </insert>
    <insert id="insertSelective" parameterType="com.yoho.search.dal.model.ProductTiming" >
        insert into product_timing
        <trim prefix="(" suffix=")" suffixOverrides="," >
            <if test="id != null" >
                id,
            </if>
            <if test="productId != null" >
                product_id,
            </if>
            <if test="shelveTime != null" >
                shelve_time,
            </if>
            <if test="flag != null" >
                flag,
            </if>
            <if test="createTime != null" >
                create_time,
            </if>
            <if test="productSkn != null" >
                product_skn,
            </if>
            <if test="advanceEndTime != null" >
                advance_end_time,
            </if>
            <if test="outSaleTime != null" >
                out_sale_time,
            </if>
            <if test="advanceBeginTime != null" >
                advance_begin_time,
            </if>
            <if test="onNewTime != null" >
                on_new_time,
            </if>
            <if test="outSaleFlag != null" >
                out_sale_flag,
            </if>
            <if test="onSaleFlag != null" >
                on_sale_flag,
            </if>
        </trim>
        <trim prefix="values (" suffix=")" suffixOverrides="," >
            <if test="id != null" >
                #{id,jdbcType=INTEGER},
            </if>
            <if test="productId != null" >
                #{productId,jdbcType=INTEGER},
            </if>
            <if test="shelveTime != null" >
                #{shelveTime,jdbcType=INTEGER},
            </if>
            <if test="flag != null" >
                #{flag,jdbcType=TINYINT},
            </if>
            <if test="createTime != null" >
                #{createTime,jdbcType=INTEGER},
            </if>
            <if test="productSkn != null" >
                #{productSkn,jdbcType=INTEGER},
            </if>
            <if test="advanceEndTime != null" >
                #{advanceEndTime,jdbcType=INTEGER},
            </if>
            <if test="outSaleTime != null" >
                #{outSaleTime,jdbcType=INTEGER},
            </if>
            <if test="advanceBeginTime != null" >
                #{advanceBeginTime,jdbcType=INTEGER},
            </if>
            <if test="onNewTime != null" >
                #{onNewTime,jdbcType=INTEGER},
            </if>
            <if test="outSaleFlag != null" >
                #{outSaleFlag,jdbcType=TINYINT},
            </if>
            <if test="onSaleFlag != null" >
                #{onSaleFlag,jdbcType=TINYINT},
            </if>
        </trim>
    </insert>
    <update id="updateByPrimaryKeySelective" parameterType="com.yoho.search.dal.model.ProductTiming" >
        update product_timing
        <set >
            <if test="productId != null" >
                product_id = #{productId,jdbcType=INTEGER},
            </if>
            <if test="shelveTime != null" >
                shelve_time = #{shelveTime,jdbcType=INTEGER},
            </if>
            <if test="flag != null" >
                flag = #{flag,jdbcType=TINYINT},
            </if>
            <if test="createTime != null" >
                create_time = #{createTime,jdbcType=INTEGER},
            </if>
            <if test="productSkn != null" >
                product_skn = #{productSkn,jdbcType=INTEGER},
            </if>
            <if test="advanceEndTime != null" >
                advance_end_time = #{advanceEndTime,jdbcType=INTEGER},
            </if>
            <if test="outSaleTime != null" >
                out_sale_time = #{outSaleTime,jdbcType=INTEGER},
            </if>
            <if test="advanceBeginTime != null" >
                advance_begin_time = #{advanceBeginTime,jdbcType=INTEGER},
            </if>
            <if test="onNewTime != null" >
                on_new_time = #{onNewTime,jdbcType=INTEGER},
            </if>
            <if test="outSaleFlag != null" >
                out_sale_flag = #{outSaleFlag,jdbcType=TINYINT},
            </if>
            <if test="onSaleFlag != null" >
                on_sale_flag = #{onSaleFlag,jdbcType=TINYINT},
            </if>
        </set>
        where id = #{id,jdbcType=INTEGER}
    </update>
    <update id="updateByPrimaryKey" parameterType="com.yoho.search.dal.model.ProductTiming" >
        update product_timing
        set product_id = #{productId,jdbcType=INTEGER},
        shelve_time = #{shelveTime,jdbcType=INTEGER},
        flag = #{flag,jdbcType=TINYINT},
        create_time = #{createTime,jdbcType=INTEGER},
        product_skn = #{productSkn,jdbcType=INTEGER},
        advance_end_time = #{advanceEndTime,jdbcType=INTEGER},
        out_sale_time = #{outSaleTime,jdbcType=INTEGER},
        advance_begin_time = #{advanceBeginTime,jdbcType=INTEGER},
        on_new_time = #{onNewTime,jdbcType=INTEGER},
        out_sale_flag = #{outSaleFlag,jdbcType=TINYINT},
        on_sale_flag = #{onSaleFlag,jdbcType=TINYINT}
        where id = #{id,jdbcType=INTEGER}
    </update>
</mapper>