UfoGoodsMapper.xml
3.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<?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 ufo_goods
where id = #{id,jdbcType=INTEGER}
</select>
<delete id="deleteByPrimaryKey" parameterType="java.lang.Integer" >
delete from ufo_goods
where id = #{id,jdbcType=INTEGER}
</delete>
<insert id="insertSelective" parameterType="com.yoho.search.dal.model.ufo_product.Goods" >
insert into ufo_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 ufo_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>
<select id="selectByProductIdList" resultMap="BaseResultMap" timeout="20000">
select
<include refid="Base_Column_List"/>
from ufo_goods
WHERE product_id in
<foreach item="item" index="index" collection="list"
open="(" separator="," close=")">
#{item}
</foreach>
</select>
</mapper>