ProductPriceMapper.xml 6.74 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.ProductPriceMapper">

	<resultMap id="BaseResultMap" type="com.yoho.search.dal.model.ProductPrice">
		<id column="product_id" property="productId" jdbcType="INTEGER" />
		<result column="market_price" property="marketPrice" jdbcType="DECIMAL" />
		<result column="sales_price" property="salesPrice" jdbcType="DECIMAL" />
		<result column="purchase_price" property="purchasePrice" jdbcType="DECIMAL" />
		<result column="special_price" property="specialPrice" jdbcType="DECIMAL" />
		<result column="yoho_coin_num" property="yohoCoinNum" jdbcType="INTEGER" />
		<result column="purchase_num" property="purchaseNum" jdbcType="DECIMAL" />
		<result column="purchase_cost" property="purchaseCost" jdbcType="DECIMAL" />
		<result column="tariff" property="tariff" jdbcType="DECIMAL" />
		<result column="vip_discount_type" property="vipDiscountType" jdbcType="INTEGER" />
		<result column="vip_discount" property="vipDiscount" jdbcType="DECIMAL" />
		<result column="vip_price" property="vipPrice" jdbcType="DECIMAL" />
		<result column="vip1_price" property="vip1Price" jdbcType="DECIMAL" />
		<result column="vip2_price" property="vip2Price" jdbcType="DECIMAL" />
		<result column="vip3_price" property="vip3Price" jdbcType="DECIMAL" />
		<result column="student_price" property="studentPrice" jdbcType="DECIMAL" />
		<result column="product_skn" property="productSkn" jdbcType="INTEGER" />
		<result column="update_time" property="updateTime" jdbcType="INTEGER" />
		<result column="student_coin_rate" property="studentCoinRate" jdbcType="DECIMAL" />
        <result column="lastReducePriceTime" property="lastReducePriceTime" jdbcType="INTEGER" />
	</resultMap>

    <sql id="Base_Column_List">
		product_id, market_price, sales_price, purchase_price, special_price,
		yoho_coin_num,
		purchase_num, purchase_cost, tariff, vip_discount_type, vip_discount, vip_price,
		vip1_price, vip2_price, vip3_price,student_price, product_skn, update_time, student_coin_rate,lastReducePriceTime
	</sql>

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

    <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer" timeout="20000">
		delete from product_price
		where product_id = #{productId,jdbcType=INTEGER}
	</delete>

    <insert id="insert" parameterType="com.yoho.search.dal.model.ProductPrice" timeout="20000">
		insert ignore into product_price (product_id, market_price, sales_price,
		purchase_price, special_price, yoho_coin_num,
		purchase_num, purchase_cost, tariff,
		vip_discount_type, vip_discount, vip_price,
		vip1_price, vip2_price, vip3_price,student_price,
		product_skn, update_time, student_coin_rate,lastReducePriceTime)
		values (#{productId,jdbcType=INTEGER}, #{marketPrice,jdbcType=DECIMAL},
		#{salesPrice,jdbcType=DECIMAL},
		#{purchasePrice,jdbcType=DECIMAL}, #{specialPrice,jdbcType=DECIMAL}, #{yohoCoinNum,jdbcType=INTEGER},
		#{purchaseNum,jdbcType=DECIMAL}, #{purchaseCost,jdbcType=DECIMAL},
		#{tariff,jdbcType=DECIMAL},
		#{vipDiscountType,jdbcType=INTEGER}, #{vipDiscount,jdbcType=DECIMAL}, #{vipPrice,jdbcType=DECIMAL},
		#{vip1Price,jdbcType=DECIMAL}, #{vip2Price,jdbcType=DECIMAL},
		#{vip3Price,jdbcType=DECIMAL},#{studentPrice,jdbcType=DECIMAL},
		#{productSkn,jdbcType=INTEGER}, #{updateTime,jdbcType=INTEGER} ,#{studentCoinRate,jdbcType=DECIMAL},#{lastReducePriceTime,jdbcType=INTEGER})
	</insert>

    <update id="updateByPrimaryKeySelective" parameterType="com.yoho.search.dal.model.ProductPrice" timeout="20000">
        update product_price
        <set>
            <if test="marketPrice != null">
                market_price = #{marketPrice,jdbcType=DECIMAL},
            </if>
            <if test="salesPrice != null">
                sales_price = #{salesPrice,jdbcType=DECIMAL},
            </if>
            <if test="purchasePrice != null">
                purchase_price = #{purchasePrice,jdbcType=DECIMAL},
            </if>
            <if test="specialPrice != null">
                special_price = #{specialPrice,jdbcType=DECIMAL},
            </if>
            <if test="yohoCoinNum != null">
                yoho_coin_num = #{yohoCoinNum,jdbcType=INTEGER},
            </if>
            <if test="purchaseNum != null">
                purchase_num = #{purchaseNum,jdbcType=DECIMAL},
            </if>
            <if test="purchaseCost != null">
                purchase_cost = #{purchaseCost,jdbcType=DECIMAL},
            </if>
            <if test="tariff != null">
                tariff = #{tariff,jdbcType=DECIMAL},
            </if>
            <if test="vipDiscountType != null">
                vip_discount_type = #{vipDiscountType,jdbcType=INTEGER},
            </if>
            <if test="vipDiscount != null">
                vip_discount = #{vipDiscount,jdbcType=DECIMAL},
            </if>
            <if test="vipPrice != null">
                vip_price = #{vipPrice,jdbcType=DECIMAL},
            </if>
            <if test="vip1Price != null">
                vip1_price = #{vip1Price,jdbcType=DECIMAL},
            </if>
            <if test="vip2Price != null">
                vip2_price = #{vip2Price,jdbcType=DECIMAL},
            </if>
            <if test="vip3Price != null">
                vip3_price = #{vip3Price,jdbcType=DECIMAL},
            </if>
            student_price = #{studentPrice,jdbcType=DECIMAL},
            <if test="productSkn != null">
                product_skn = #{productSkn,jdbcType=INTEGER},
            </if>
            <if test="updateTime != null">
                update_time = #{updateTime,jdbcType=INTEGER},
            </if>
            <if test="studentCoinRate != null">
                student_coin_rate = #{studentCoinRate,jdbcType=DECIMAL},
            </if>
            <if test="lastReducePriceTime != null">
                lastReducePriceTime = #{lastReducePriceTime,jdbcType=INTEGER},
            </if>
        </set>
        where product_id = #{productId,jdbcType=INTEGER}
    </update>

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

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

    <select id="selectByIds" resultMap="BaseResultMap">
		select
		<include refid="Base_Column_List" />
		from product_price where product_id in
		<foreach item="item" index="index" collection="list"
				 open="(" separator="," close=")">
			#{item}
		</foreach>
	</select>
</mapper>