UnionShareUserApplyMapper.xml
8.01 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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
<?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.unions.dal.UnionShareUserApplyMapper" >
<resultMap id="BaseResultMap" type="com.yoho.unions.dal.model.UnionShareUserApply" >
<id column="id" property="id" jdbcType="INTEGER" />
<result column="uid" property="uid" jdbcType="INTEGER" />
<result column="name" property="name" jdbcType="VARCHAR" />
<result column="mobile" property="mobile" jdbcType="VARCHAR" />
<result column="social_media_type" property="socialMediaType" jdbcType="TINYINT" />
<result column="social_media_account" property="socialMediaAccount" jdbcType="VARCHAR" />
<result column="social_media_fans" property="socialMediaFans" jdbcType="INTEGER" />
<result column="status" property="status" jdbcType="TINYINT" />
<result column="del_flag" property="delFlag" jdbcType="TINYINT" />
<result column="create_time" property="createTime" jdbcType="INTEGER" />
<result column="check_time" property="checkTime" jdbcType="INTEGER" />
</resultMap>
<sql id="Base_Column_List" >
id, uid, name, mobile, social_media_type, social_media_account, social_media_fans, status,
del_flag, create_time, check_time
</sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer" >
select
<include refid="Base_Column_List" />
from union_share_user_apply
where id = #{id,jdbcType=INTEGER}
</select>
<select id="selectByCondition"
resultType="com.yoho.service.model.union.response.UnionShareUserApplyListBo"
parameterType="com.yoho.service.model.union.request.UnionShareUserApplyListReqBo">
select id, uid, name,mobile, social_media_type socialMediaType, social_media_account socialMediaAccount, social_media_fans socialMediaFans, status,
del_flag delFlag, create_time createTime, check_time checkTime
from union_share_user_apply
where del_flag=1
<if test="uid != null">
and uid = #{uid}
</if>
<if test="name != null">
and name = #{name}
</if>
<if test="mobile != null">
and mobile = #{mobile}
</if>
<if test="socialMediaType != null">
and social_media_type = #{socialMediaType}
</if>
<if test="socialMediaAccount != null">
and social_media_account = #{socialMediaAccount}
</if>
<if test="socialMediaFans != null">
and social_media_fans = #{socialMediaFans}
</if>
<if test="status != null">
and status = #{status}
</if>
order by id desc
limit #{start},#{size}
</select>
<select id="selectTotalByCondition" resultType="java.lang.Integer"
parameterType="com.yoho.service.model.union.request.UnionShareUserApplyListReqBo">
select count(id)
from union_share_user_apply
where del_flag=1
<if test="uid != null">
and uid = #{uid}
</if>
<if test="name != null">
and name = #{name}
</if>
<if test="mobile != null">
and mobile = #{mobile}
</if>
<if test="socialMediaType != null">
and social_media_type = #{socialMediaType}
</if>
<if test="socialMediaAccount != null">
and social_media_account = #{socialMediaAccount}
</if>
<if test="socialMediaFans != null">
and social_media_fans = #{socialMediaFans}
</if>
<if test="status != null">
and status = #{status}
</if>
</select>
<delete id="deleteByPrimaryKey" parameterType="java.lang.Integer" >
delete from union_share_user_apply
where id = #{id,jdbcType=INTEGER}
</delete>
<insert id="insert" parameterType="com.yoho.unions.dal.model.UnionShareUserApply" >
insert into union_share_user_apply (id, uid, name, mobile,
social_media_type, social_media_account, social_media_fans,
status, del_flag, create_time,
check_time)
values (#{id,jdbcType=INTEGER}, #{uid,jdbcType=INTEGER}, #{name,jdbcType=VARCHAR}, #{mobile,jdbcType=VARCHAR},
#{socialMediaType,jdbcType=TINYINT}, #{socialMediaAccount,jdbcType=VARCHAR}, #{socialMediaFans,jdbcType=INTEGER},
#{status,jdbcType=TINYINT}, #{delFlag,jdbcType=TINYINT}, #{createTime,jdbcType=INTEGER},
#{checkTime,jdbcType=INTEGER})
</insert>
<insert id="insertSelective" parameterType="com.yoho.unions.dal.model.UnionShareUserApply" >
insert into union_share_user_apply
<trim prefix="(" suffix=")" suffixOverrides="," >
<if test="id != null" >
id,
</if>
<if test="uid != null" >
uid,
</if>
<if test="name != null" >
name,
</if>
<if test="mobile != null" >
mobile,
</if>
<if test="socialMediaType != null" >
social_media_type,
</if>
<if test="socialMediaAccount != null" >
social_media_account,
</if>
<if test="socialMediaFans != null" >
social_media_fans,
</if>
<if test="status != null" >
status,
</if>
<if test="delFlag != null" >
del_flag,
</if>
<if test="createTime != null" >
create_time,
</if>
<if test="checkTime != null" >
check_time,
</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides="," >
<if test="id != null" >
#{id,jdbcType=INTEGER},
</if>
<if test="uid != null" >
#{uid,jdbcType=INTEGER},
</if>
<if test="name != null" >
#{name,jdbcType=VARCHAR},
</if>
<if test="mobile != null" >
#{mobile,jdbcType=VARCHAR},
</if>
<if test="socialMediaType != null" >
#{socialMediaType,jdbcType=TINYINT},
</if>
<if test="socialMediaAccount != null" >
#{socialMediaAccount,jdbcType=VARCHAR},
</if>
<if test="socialMediaFans != null" >
#{socialMediaFans,jdbcType=INTEGER},
</if>
<if test="status != null" >
#{status,jdbcType=TINYINT},
</if>
<if test="delFlag != null" >
#{delFlag,jdbcType=TINYINT},
</if>
<if test="createTime != null" >
#{createTime,jdbcType=INTEGER},
</if>
<if test="checkTime != null" >
#{checkTime,jdbcType=INTEGER},
</if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective" parameterType="com.yoho.unions.dal.model.UnionShareUserApply" >
update union_share_user_apply
<set >
<if test="uid != null" >
uid = #{uid,jdbcType=INTEGER},
</if>
<if test="name != null" >
name = #{name,jdbcType=VARCHAR},
</if>
<if test="mobile != null" >
mobile = #{mobile,jdbcType=VARCHAR},
</if>
<if test="socialMediaType != null" >
social_media_type = #{socialMediaType,jdbcType=TINYINT},
</if>
<if test="socialMediaAccount != null" >
social_media_account = #{socialMediaAccount,jdbcType=VARCHAR},
</if>
<if test="socialMediaFans != null" >
social_media_fans = #{socialMediaFans,jdbcType=INTEGER},
</if>
<if test="status != null" >
status = #{status,jdbcType=TINYINT},
</if>
<if test="delFlag != null" >
del_flag = #{delFlag,jdbcType=TINYINT},
</if>
<if test="createTime != null" >
create_time = #{createTime,jdbcType=INTEGER},
</if>
<if test="checkTime != null" >
check_time = #{checkTime,jdbcType=INTEGER},
</if>
</set>
where id = #{id,jdbcType=INTEGER}
</update>
<update id="updateByPrimaryKey" parameterType="com.yoho.unions.dal.model.UnionShareUserApply" >
update union_share_user_apply
set uid = #{uid,jdbcType=INTEGER},
name = #{name,jdbcType=VARCHAR},
mobile = #{mobile,jdbcType=VARCHAR},
social_media_type = #{socialMediaType,jdbcType=TINYINT},
social_media_account = #{socialMediaAccount,jdbcType=VARCHAR},
social_media_fans = #{socialMediaFans,jdbcType=INTEGER},
status = #{status,jdbcType=TINYINT},
del_flag = #{delFlag,jdbcType=TINYINT},
create_time = #{createTime,jdbcType=INTEGER},
check_time = #{checkTime,jdbcType=INTEGER}
where id = #{id,jdbcType=INTEGER}
</update>
</mapper>