GoodsImagesMapper.xml
4.62 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
<?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.GoodsImagesMapper">
<resultMap id="BaseResultMap" type="com.yoho.search.dal.model.GoodsImages">
<id column="id" property="id" jdbcType="INTEGER"/>
<result column="goods_id" property="goodsId" jdbcType="INTEGER"/>
<result column="product_id" property="productId" jdbcType="INTEGER"/>
<result column="is_default" property="isDefault" jdbcType="CHAR"/>
<result column="image_name" property="imageName" jdbcType="VARCHAR"/>
<result column="image_url" property="imageUrl" jdbcType="VARCHAR"/>
<result column="angle" property="angle" jdbcType="INTEGER"/>
<result column="order_by" property="orderBy" jdbcType="INTEGER"/>
<result column="intro" property="intro" jdbcType="VARCHAR"/>
<result column="status" property="status" jdbcType="INTEGER"/>
<result column="gender_cover" property="genderCover" jdbcType="INTEGER"/>
<result column="vedio_url_id" property="vedioUrlId" jdbcType="INTEGER"/>
</resultMap>
<sql id="Base_Column_List">
id, goods_id, product_id, is_default, image_name, image_url, angle, order_by, intro,
status, gender_cover,vedio_url_id
</sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer" timeout="20000">
select
<include refid="Base_Column_List"/>
from goods_images
where id = #{id,jdbcType=INTEGER}
limit 1
</select>
<delete id="deleteByPrimaryKey" parameterType="java.lang.Integer" timeout="20000">
delete from goods_images
where id = #{id,jdbcType=INTEGER}
</delete>
<insert id="insert" parameterType="com.yoho.search.dal.model.GoodsImages" timeout="20000">
insert ignore into goods_images (id, goods_id, product_id,
is_default, image_name, image_url,
angle, order_by, intro,
status, gender_cover,vedio_url_id)
values (#{id,jdbcType=INTEGER}, #{goodsId,jdbcType=INTEGER}, #{productId,jdbcType=INTEGER},
#{isDefault,jdbcType=CHAR}, #{imageName,jdbcType=VARCHAR}, #{imageUrl,jdbcType=VARCHAR},
#{angle,jdbcType=INTEGER}, #{orderBy,jdbcType=INTEGER}, #{intro,jdbcType=VARCHAR},
#{status,jdbcType=INTEGER}, #{genderCover,jdbcType=INTEGER}, #{vedioUrlId,jdbcType=INTEGER})
</insert>
<update id="updateByPrimaryKeySelective" parameterType="com.yoho.search.dal.model.GoodsImages" timeout="20000">
update goods_images
<set>
<if test="goodsId != null">
goods_id = #{goodsId,jdbcType=INTEGER},
</if>
<if test="productId != null">
product_id = #{productId,jdbcType=INTEGER},
</if>
<if test="isDefault != null">
is_default = #{isDefault,jdbcType=CHAR},
</if>
<if test="imageName != null">
image_name = #{imageName,jdbcType=VARCHAR},
</if>
<if test="imageUrl != null">
image_url = #{imageUrl,jdbcType=VARCHAR},
</if>
<if test="angle != null">
angle = #{angle,jdbcType=INTEGER},
</if>
<if test="orderBy != null">
order_by = #{orderBy,jdbcType=INTEGER},
</if>
<if test="intro != null">
intro = #{intro,jdbcType=VARCHAR},
</if>
<if test="status != null">
status = #{status,jdbcType=INTEGER},
</if>
<if test="genderCover != null">
gender_cover = #{genderCover,jdbcType=INTEGER},
</if>
<if test="vedioUrlId != null">
vedio_url_id = #{vedioUrlId,jdbcType=INTEGER},
</if>
</set>
where id = #{id,jdbcType=INTEGER}
</update>
<select id="selectDefaultImageUrlByProductId" parameterType="java.lang.Integer" resultType="java.lang.String" timeout="20000">
SELECT image_url FROM goods_images where is_default='Y' and product_id = #{productId,jdbcType=INTEGER} order by id desc limit 0,1
</select>
<select id="selectListByProductIds" resultMap="BaseResultMap" timeout="20000">
select
<include refid="Base_Column_List"/>
from goods_images
where product_id in
<foreach collection="productIds" index="index" item="item" open="(" separator="," close=")">
#{item}
</foreach>
</select>
</mapper>