UfoStorageMapper.xml 4.23 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.UfoStorageMapper" >
  
  <resultMap id="BaseResultMap" type="com.yoho.search.dal.model.UfoStorage" >
    <id column="id" property="id" jdbcType="INTEGER" />
    <result column="product_id" property="productId" jdbcType="INTEGER" />
    <result column="goods_id" property="goodsId" jdbcType="INTEGER" />
    <result column="size_id" property="sizeId" jdbcType="SMALLINT" />
    <result column="storage_num" property="storageNum" jdbcType="INTEGER" />
      <result column="suggest_low_price" property="suggestLowPrice" jdbcType="DECIMAL" />
      <result column="suggest_high_price" property="suggestHighPrice" jdbcType="DECIMAL" />
  </resultMap>

    <sql id="Base_Column_List" >
    id, product_id, goods_id, size_id, storage_num, suggest_low_price,
    suggest_high_price
  </sql>
  
  <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer" >
    select 
    <include refid="Base_Column_List" />
    from ufo_storage
    where id = #{id,jdbcType=INTEGER}
  </select>
  
  <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer" >
    delete from ufo_storage
    where id = #{id,jdbcType=INTEGER}
  </delete>

    <insert id="insertSelective" parameterType="com.yoho.search.dal.model.UfoStorage" >
        insert into ufo_storage
        <trim prefix="(" suffix=")" suffixOverrides="," >
            <if test="id != null" >
                id,
            </if>
            <if test="productId != null" >
                product_id,
            </if>
            <if test="goodsId != null" >
                goods_id,
            </if>
            <if test="sizeId != null" >
                size_id,
            </if>
            <if test="storageNum != null" >
                storage_num,
            </if>
            <if test="suggestLowPrice != null" >
                suggest_low_price,
            </if>
            <if test="suggestHighPrice != null" >
                suggest_high_price,
            </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="goodsId != null" >
                #{goodsId,jdbcType=INTEGER},
            </if>
            <if test="sizeId != null" >
                #{sizeId,jdbcType=SMALLINT},
            </if>
            <if test="storageNum != null" >
                #{storageNum,jdbcType=INTEGER},
            </if>
            <if test="suggestLowPrice != null" >
                #{suggestLowPrice,jdbcType=DECIMAL},
            </if>
            <if test="suggestHighPrice != null" >
                #{suggestHighPrice,jdbcType=DECIMAL},
            </if>
        </trim>
    </insert>

    <update id="updateByPrimaryKeySelective" parameterType="com.yoho.search.dal.model.UfoStorage" >
        update ufo_storage
        <set >
            <if test="productId != null" >
                product_id = #{productId,jdbcType=INTEGER},
            </if>
            <if test="goodsId != null" >
                goods_id = #{goodsId,jdbcType=INTEGER},
            </if>
            <if test="sizeId != null" >
                size_id = #{sizeId,jdbcType=SMALLINT},
            </if>
            <if test="storageNum != null" >
                storage_num = #{storageNum,jdbcType=INTEGER},
            </if>
            <if test="suggestLowPrice != null" >
                suggest_low_price = #{suggestLowPrice,jdbcType=DECIMAL},
            </if>
            <if test="suggestHighPrice != null" >
                suggest_high_price = #{suggestHighPrice,jdbcType=DECIMAL},
            </if>
        </set>
        where id = #{id,jdbcType=INTEGER}
    </update>
  
  <select id="selectByProductIdList" resultMap="BaseResultMap" timeout="20000">
    select
    <include refid="Base_Column_List"/>
    from ufo_storage
    WHERE product_id in
    <foreach item="item" index="index" collection="list"
             open="(" separator="," close=")">
      #{item}
    </foreach>
  </select>
</mapper>