ProductPriceMapper.xml 9.83 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" />
	</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
	</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)
		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})
	</insert>
	<insert id="insertSelective" parameterType="com.yoho.search.dal.model.ProductPrice" timeout="20000">
		insert ignore into product_price
		<trim prefix="(" suffix=")" suffixOverrides=",">
			<if test="productId != null">
				product_id,
			</if>
			<if test="marketPrice != null">
				market_price,
			</if>
			<if test="salesPrice != null">
				sales_price,
			</if>
			<if test="purchasePrice != null">
				purchase_price,
			</if>
			<if test="specialPrice != null">
				special_price,
			</if>
			<if test="yohoCoinNum != null">
				yoho_coin_num,
			</if>
			<if test="purchaseNum != null">
				purchase_num,
			</if>
			<if test="purchaseCost != null">
				purchase_cost,
			</if>
			<if test="tariff != null">
				tariff,
			</if>
			<if test="vipDiscountType != null">
				vip_discount_type,
			</if>
			<if test="vipDiscount != null">
				vip_discount,
			</if>
			<if test="vipPrice != null">
				vip_price,
			</if>
			<if test="vip1Price != null">
				vip1_price,
			</if>
			<if test="vip2Price != null">
				vip2_price,
			</if>
			<if test="vip3Price != null">
				vip3_price,
			</if>
			<if test="studentPrice != null">
				student_price,
			</if>
			<if test="productSkn != null">
				product_skn,
			</if>
			<if test="updateTime != null">
				update_time,
			</if>
			<if test="studentCoinRate != null">
				student_coin_rate,
			</if>
		</trim>
		<trim prefix="values (" suffix=")" suffixOverrides=",">
			<if test="productId != null">
				#{productId,jdbcType=INTEGER},
			</if>
			<if test="marketPrice != null">
				#{marketPrice,jdbcType=DECIMAL},
			</if>
			<if test="salesPrice != null">
				#{salesPrice,jdbcType=DECIMAL},
			</if>
			<if test="purchasePrice != null">
				#{purchasePrice,jdbcType=DECIMAL},
			</if>
			<if test="specialPrice != null">
				#{specialPrice,jdbcType=DECIMAL},
			</if>
			<if test="yohoCoinNum != null">
				#{yohoCoinNum,jdbcType=INTEGER},
			</if>
			<if test="purchaseNum != null">
				#{purchaseNum,jdbcType=DECIMAL},
			</if>
			<if test="purchaseCost != null">
				#{purchaseCost,jdbcType=DECIMAL},
			</if>
			<if test="tariff != null">
				#{tariff,jdbcType=DECIMAL},
			</if>
			<if test="vipDiscountType != null">
				#{vipDiscountType,jdbcType=INTEGER},
			</if>
			<if test="vipDiscount != null">
				#{vipDiscount,jdbcType=DECIMAL},
			</if>
			<if test="vipPrice != null">
				#{vipPrice,jdbcType=DECIMAL},
			</if>
			<if test="vip1Price != null">
				#{vip1Price,jdbcType=DECIMAL},
			</if>
			<if test="vip2Price != null">
				#{vip2Price,jdbcType=DECIMAL},
			</if>
			<if test="vip3Price != null">
				#{vip3Price,jdbcType=DECIMAL},
			</if>
			<if test="studentPrice != null">
				#{studentPrice,jdbcType=DECIMAL},
			</if>
			<if test="productSkn != null">
				#{productSkn,jdbcType=INTEGER},
			</if>
			<if test="updateTime != null">
				#{updateTime,jdbcType=INTEGER},
			</if>
			<if test="studentCoinRate != null">
				#{studentCoinRate,jdbcType=DECIMAL},
			</if>
		</trim>
	</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>
		</set>
		where product_id = #{productId,jdbcType=INTEGER}
	</update>
	<update id="updateByPrimaryKey" parameterType="com.yoho.search.dal.model.ProductPrice" timeout="20000">
		update product_price
		set market_price = #{marketPrice,jdbcType=DECIMAL},
		sales_price = #{salesPrice,jdbcType=DECIMAL},
		purchase_price = #{purchasePrice,jdbcType=DECIMAL},
		special_price = #{specialPrice,jdbcType=DECIMAL},
		yoho_coin_num = #{yohoCoinNum,jdbcType=INTEGER},
		purchase_num = #{purchaseNum,jdbcType=DECIMAL},
		purchase_cost = #{purchaseCost,jdbcType=DECIMAL},
		tariff = #{tariff,jdbcType=DECIMAL},
		vip_discount_type = #{vipDiscountType,jdbcType=INTEGER},
		vip_discount = #{vipDiscount,jdbcType=DECIMAL},
		vip_price = #{vipPrice,jdbcType=DECIMAL},
		vip1_price = #{vip1Price,jdbcType=DECIMAL},
		vip2_price = #{vip2Price,jdbcType=DECIMAL},YH
		vip3_price = #{vip3Price,jdbcType=DECIMAL},
		student_price = #{studentPrice,jdbcType=DECIMAL},
		product_skn = #{productSkn,jdbcType=INTEGER},
		update_time = #{updateTime,jdbcType=INTEGER},
		student_coin_rate = #{studentCoinRate,jdbcType=DECIMAL}
		where product_id = #{productId,jdbcType=INTEGER}
	</update>
	<select id="count" resultType="java.lang.Integer" timeout="20000">
		SELECT count(1) FROM product_price
	</select>
	<select id="getPageLists" 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>