UfoStorageMapper.xml 3.95 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" />
  </resultMap>
  
  <sql id="Base_Column_List" >
    id, product_id, goods_id, size_id, storage_num, update_time, create_time
  </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="insert" parameterType="com.yoho.search.dal.model.UfoStorage" >
    insert into ufo_storage (id, product_id, goods_id, 
      size_id, storage_num)
    values (#{id,jdbcType=INTEGER}, #{productId,jdbcType=INTEGER}, #{goodsId,jdbcType=INTEGER}, 
      #{sizeId,jdbcType=SMALLINT}, #{storageNum,jdbcType=INTEGER})
  </insert>

    <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="updateTime != null" >
                update_time,
            </if>
            <if test="createTime != null" >
                create_time,
            </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="updateTime != null" >
                #{updateTime,jdbcType=INTEGER},
            </if>
            <if test="createTime != null" >
                #{createTime,jdbcType=INTEGER},
            </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>
    </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>