UfoGoodsMapper.xml 4.61 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.UfoGoodsMapper">

    <resultMap id="BaseResultMap" type="com.yoho.search.dal.model.ufo_product.Goods">
        <id column="id" property="id" jdbcType="INTEGER"/>
        <result column="product_id" property="productId" jdbcType="INTEGER"/>
        <result column="color_id" property="colorId" jdbcType="SMALLINT"/>
        <result column="color_name" property="colorName" jdbcType="VARCHAR"/>
        <result column="goods_name" property="goodsName" jdbcType="VARCHAR"/>
        <result column="color_image" property="colorImage" jdbcType="VARCHAR"/>
        <result column="is_default" property="isDefault" jdbcType="CHAR"/>
    </resultMap>

    <sql id="Base_Column_List">
    id, product_id, color_id, color_name, goods_name, color_image, is_default
  </sql>

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

    <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
    delete from goods
    where id = #{id,jdbcType=INTEGER}
  </delete>

    <insert id="insertSelective" parameterType="com.yoho.search.dal.model.ufo_product.Goods">
        insert into goods
        <trim prefix="(" suffix=")" suffixOverrides=",">
            <if test="id != null">
                id,
            </if>
            <if test="productId != null">
                product_id,
            </if>
            <if test="colorId != null">
                color_id,
            </if>
            <if test="colorName != null">
                color_name,
            </if>
            <if test="goodsName != null">
                goods_name,
            </if>
            <if test="colorImage != null">
                color_image,
            </if>
            <if test="isDefault != null">
                is_default,
            </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="colorId != null">
                #{colorId,jdbcType=SMALLINT},
            </if>
            <if test="colorName != null">
                #{colorName,jdbcType=VARCHAR},
            </if>
            <if test="goodsName != null">
                #{goodsName,jdbcType=VARCHAR},
            </if>
            <if test="colorImage != null">
                #{colorImage,jdbcType=VARCHAR},
            </if>
            <if test="isDefault != null">
                #{isDefault,jdbcType=CHAR},
            </if>
        </trim>
    </insert>

    <update id="updateByPrimaryKeySelective" parameterType="com.yoho.search.dal.model.ufo_product.Goods">
        update goods
        <set>
            <if test="productId != null">
                product_id = #{productId,jdbcType=INTEGER},
            </if>
            <if test="colorId != null">
                color_id = #{colorId,jdbcType=SMALLINT},
            </if>
            <if test="colorName != null">
                color_name = #{colorName,jdbcType=VARCHAR},
            </if>
            <if test="goodsName != null">
                goods_name = #{goodsName,jdbcType=VARCHAR},
            </if>
            <if test="colorImage != null">
                color_image = #{colorImage,jdbcType=VARCHAR},
            </if>
            <if test="isDefault != null">
                is_default = #{isDefault,jdbcType=CHAR},
            </if>
        </set>
        where id = #{id,jdbcType=INTEGER}
    </update>

    <update id="updateByPrimaryKey" parameterType="com.yoho.search.dal.model.ufo_product.Goods">
        update goods
        set product_id = #{productId,jdbcType=INTEGER},
        color_id = #{colorId,jdbcType=SMALLINT},
        color_name = #{colorName,jdbcType=VARCHAR},
        goods_name = #{goodsName,jdbcType=VARCHAR},
        color_image = #{colorImage,jdbcType=VARCHAR},
        is_default = #{isDefault,jdbcType=CHAR}
        where id = #{id,jdbcType=INTEGER}
    </update>

    <select id="selectByProductIdList" resultMap="BaseResultMap" timeout="20000">
        select
        <include refid="Base_Column_List"/>
        from goods
        WHERE product_id in
        <foreach item="item" index="index" collection="list"
                 open="(" separator="," close=")">
            #{item}
        </foreach>
    </select>
</mapper>