LikeDetailsMapper.xml
4.64 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<?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.bjivt.entity.showtime.LikeDetails">
<resultMap id="BaseResultMap" type="com.bjivt.entity.showtime.LikeDetails">
<id column="id" jdbcType="INTEGER" property="id" />
<result column="user_id" jdbcType="INTEGER" property="userId" />
<result column="live_id" jdbcType="INTEGER" property="liveId" />
<result column="count" jdbcType="INTEGER" property="count" />
<result column="liker_id" jdbcType="INTEGER" property="likerId" />
<result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
</resultMap>
<sql id="Base_Column_List">
id, user_id, live_id, count, liker_id, create_time
</sql>
<select id="selectById" parameterType="java.lang.Integer" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from tbl_user_like_details
where id = #{id,jdbcType=INTEGER}
</select>
<delete id="deleteById" parameterType="java.lang.Integer">
delete from tbl_user_like_details
where id = #{id,jdbcType=INTEGER}
</delete>
<insert id="insert" parameterType="com.bjivt.entity.showtime.LikeDetails">
insert into tbl_user_like_details (id, user_id, live_id,
count, liker_id, create_time
)
values (#{id,jdbcType=INTEGER}, #{userId,jdbcType=INTEGER}, #{liveId,jdbcType=INTEGER},
#{count,jdbcType=INTEGER}, #{likerId,jdbcType=INTEGER}, #{createTime,jdbcType=TIMESTAMP}
)
</insert>
<insert id="insertSelective" parameterType="com.bjivt.entity.showtime.LikeDetails">
insert into tbl_user_like_details
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="id != null">
id,
</if>
<if test="userId != null">
user_id,
</if>
<if test="liveId != null">
live_id,
</if>
<if test="count != null">
count,
</if>
<if test="likerId != null">
liker_id,
</if>
<if test="createTime != null">
create_time,
</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="id != null">
#{id,jdbcType=INTEGER},
</if>
<if test="userId != null">
#{userId,jdbcType=INTEGER},
</if>
<if test="liveId != null">
#{liveId,jdbcType=INTEGER},
</if>
<if test="count != null">
#{count,jdbcType=INTEGER},
</if>
<if test="likerId != null">
#{likerId,jdbcType=INTEGER},
</if>
<if test="createTime != null">
#{createTime,jdbcType=TIMESTAMP},
</if>
</trim>
</insert>
<update id="updateByIdSelective" parameterType="com.bjivt.entity.showtime.LikeDetails">
update tbl_user_like_details
<set>
<if test="userId != null">
user_id = #{userId,jdbcType=INTEGER},
</if>
<if test="liveId != null">
live_id = #{liveId,jdbcType=INTEGER},
</if>
<if test="count != null">
count = #{count,jdbcType=INTEGER},
</if>
<if test="likerId != null">
liker_id = #{likerId,jdbcType=INTEGER},
</if>
<if test="createTime != null">
create_time = #{createTime,jdbcType=TIMESTAMP},
</if>
</set>
where id = #{id,jdbcType=INTEGER}
</update>
<update id="updateById" parameterType="com.bjivt.entity.showtime.LikeDetails">
update tbl_user_like_details
set user_id = #{userId,jdbcType=INTEGER},
live_id = #{liveId,jdbcType=INTEGER},
count = #{count,jdbcType=INTEGER},
liker_id = #{likerId,jdbcType=INTEGER},
create_time = #{createTime,jdbcType=TIMESTAMP}
where id = #{id,jdbcType=INTEGER}
</update>
<select id="getCountBy" resultType="java.lang.Integer" parameterType="com.bjivt.entity.showtime.LikeDetails">
SELECT
count(1)
FROM
tbl_user_like_details
<trim prefix="where" prefixOverrides="and|or">
<if test="liveId != null and liveId != ''" >
and tbl_user_like_details.live_id = #{liveId}
</if>
</trim>
</select>
<select id="findListByMap" resultMap="BaseResultMap" parameterType="java.util.Map">
SELECT
<include refid="Base_Column_List"/>
FROM
tbl_user_like_details
<trim prefix="where" prefixOverrides="and|or">
<if test="LikeDetails.liveId!= null and LikeDetails.liveId!= ''" >
and tbl_user_like_details.live_id = #{LikeDetails.liveId}
</if>
</trim>
order by create_time
<if test="page != null and page !=''">
<if test="page.from != null and page.size != null">
limit #{page.from},#{page.size}
</if>
</if>
</select>
</mapper>