1
|
<?xml version="1.0" encoding="UTF-8"?>
|
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
2
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
3
|
<mapper namespace="com.sunyo.wlpt.message.bus.service.mapper.UserMessageBindingMapper">
|
3
|
<mapper namespace="com.sunyo.wlpt.message.bus.service.mapper.UserMessageBindingMapper">
|
4
|
- <resultMap id="BaseResultMap" type="com.sunyo.wlpt.message.bus.service.domain.UserMessageBinding">
|
|
|
5
|
- <!--@mbg.generated-->
|
|
|
6
|
- <!--@Table user_message_binding-->
|
|
|
7
|
- <id column="id" jdbcType="VARCHAR" property="id"/>
|
|
|
8
|
- <result column="username" jdbcType="VARCHAR" property="username"/>
|
|
|
9
|
- <result column="virtual_host_name" jdbcType="VARCHAR" property="virtualHostName"/>
|
|
|
10
|
- <result column="exchange_name" jdbcType="VARCHAR" property="exchangeName"/>
|
|
|
11
|
- <result column="queue_name" jdbcType="VARCHAR" property="queueName"/>
|
|
|
12
|
- <result column="routing_key_name" jdbcType="VARCHAR" property="routingKeyName"/>
|
|
|
13
|
- <result column="subscriber" jdbcType="VARCHAR" property="subscriber"/>
|
|
|
14
|
- <result column="gmt_create" jdbcType="TIMESTAMP" property="gmtCreate"/>
|
|
|
15
|
- <result column="gmt_modified" jdbcType="TIMESTAMP" property="gmtModified"/>
|
|
|
16
|
- </resultMap>
|
|
|
17
|
- <sql id="Base_Column_List">
|
|
|
18
|
- <!--@mbg.generated-->
|
|
|
19
|
- id, username, virtual_host_name, exchange_name, queue_name, routing_key_name, subscriber, gmt_create,
|
|
|
20
|
- gmt_modified
|
|
|
21
|
- </sql>
|
|
|
22
|
- <select id="selectByPrimaryKey" parameterType="java.lang.String" resultMap="BaseResultMap">
|
|
|
23
|
- <!--@mbg.generated-->
|
|
|
24
|
- select
|
|
|
25
|
- <include refid="Base_Column_List"/>
|
|
|
26
|
- from user_message_binding
|
|
|
27
|
- where id = #{id,jdbcType=VARCHAR}
|
|
|
28
|
- </select>
|
4
|
+ <resultMap id="BaseResultMap" type="com.sunyo.wlpt.message.bus.service.domain.UserMessageBinding">
|
|
|
5
|
+ <!--@mbg.generated-->
|
|
|
6
|
+ <!--@Table user_message_binding-->
|
|
|
7
|
+ <id column="id" jdbcType="VARCHAR" property="id" />
|
|
|
8
|
+ <result column="user_id" jdbcType="VARCHAR" property="userId" />
|
|
|
9
|
+ <result column="username" jdbcType="VARCHAR" property="username" />
|
|
|
10
|
+ <result column="virtual_host_id" jdbcType="VARCHAR" property="virtualHostId" />
|
|
|
11
|
+ <result column="virtual_host_name" jdbcType="VARCHAR" property="virtualHostName" />
|
|
|
12
|
+ <result column="exchange_id" jdbcType="VARCHAR" property="exchangeId" />
|
|
|
13
|
+ <result column="exchange_name" jdbcType="VARCHAR" property="exchangeName" />
|
|
|
14
|
+ <result column="queue_id" jdbcType="VARCHAR" property="queueId" />
|
|
|
15
|
+ <result column="queue_name" jdbcType="VARCHAR" property="queueName" />
|
|
|
16
|
+ <result column="routing_key_id" jdbcType="VARCHAR" property="routingKeyId" />
|
|
|
17
|
+ <result column="routing_key_name" jdbcType="VARCHAR" property="routingKeyName" />
|
|
|
18
|
+ <result column="subscriber" jdbcType="VARCHAR" property="subscriber" />
|
|
|
19
|
+ <result column="gmt_create" jdbcType="TIMESTAMP" property="gmtCreate" />
|
|
|
20
|
+ <result column="gmt_modified" jdbcType="TIMESTAMP" property="gmtModified" />
|
|
|
21
|
+ </resultMap>
|
|
|
22
|
+ <sql id="Base_Column_List">
|
|
|
23
|
+ <!--@mbg.generated-->
|
|
|
24
|
+ id, user_id, username, virtual_host_id, virtual_host_name, exchange_id, exchange_name,
|
|
|
25
|
+ queue_id, queue_name, routing_key_id, routing_key_name, subscriber, gmt_create, gmt_modified
|
|
|
26
|
+ </sql>
|
|
|
27
|
+ <select id="selectByPrimaryKey" parameterType="java.lang.String" resultMap="BaseResultMap">
|
|
|
28
|
+ <!--@mbg.generated-->
|
|
|
29
|
+ select
|
|
|
30
|
+ <include refid="Base_Column_List" />
|
|
|
31
|
+ from user_message_binding
|
|
|
32
|
+ where id = #{id,jdbcType=VARCHAR}
|
|
|
33
|
+ </select>
|
|
|
34
|
+ <delete id="deleteByPrimaryKey" parameterType="java.lang.String">
|
|
|
35
|
+ <!--@mbg.generated-->
|
|
|
36
|
+ delete from user_message_binding
|
|
|
37
|
+ where id = #{id,jdbcType=VARCHAR}
|
|
|
38
|
+ </delete>
|
|
|
39
|
+ <insert id="insert" parameterType="com.sunyo.wlpt.message.bus.service.domain.UserMessageBinding">
|
|
|
40
|
+ <!--@mbg.generated-->
|
|
|
41
|
+ insert into user_message_binding (id, user_id, username,
|
|
|
42
|
+ virtual_host_id, virtual_host_name, exchange_id,
|
|
|
43
|
+ exchange_name, queue_id, queue_name,
|
|
|
44
|
+ routing_key_id, routing_key_name, subscriber,
|
|
|
45
|
+ gmt_create, gmt_modified)
|
|
|
46
|
+ values (#{id,jdbcType=VARCHAR}, #{userId,jdbcType=VARCHAR}, #{username,jdbcType=VARCHAR},
|
|
|
47
|
+ #{virtualHostId,jdbcType=VARCHAR}, #{virtualHostName,jdbcType=VARCHAR}, #{exchangeId,jdbcType=VARCHAR},
|
|
|
48
|
+ #{exchangeName,jdbcType=VARCHAR}, #{queueId,jdbcType=VARCHAR}, #{queueName,jdbcType=VARCHAR},
|
|
|
49
|
+ #{routingKeyId,jdbcType=VARCHAR}, #{routingKeyName,jdbcType=VARCHAR}, #{subscriber,jdbcType=VARCHAR},
|
|
|
50
|
+ #{gmtCreate,jdbcType=TIMESTAMP}, #{gmtModified,jdbcType=TIMESTAMP})
|
|
|
51
|
+ </insert>
|
|
|
52
|
+ <insert id="insertSelective" parameterType="com.sunyo.wlpt.message.bus.service.domain.UserMessageBinding">
|
|
|
53
|
+ <!--@mbg.generated-->
|
|
|
54
|
+ insert into user_message_binding
|
|
|
55
|
+ <trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
56
|
+ <if test="id != null">
|
|
|
57
|
+ id,
|
|
|
58
|
+ </if>
|
|
|
59
|
+ <if test="userId != null">
|
|
|
60
|
+ user_id,
|
|
|
61
|
+ </if>
|
|
|
62
|
+ <if test="username != null">
|
|
|
63
|
+ username,
|
|
|
64
|
+ </if>
|
|
|
65
|
+ <if test="virtualHostId != null">
|
|
|
66
|
+ virtual_host_id,
|
|
|
67
|
+ </if>
|
|
|
68
|
+ <if test="virtualHostName != null">
|
|
|
69
|
+ virtual_host_name,
|
|
|
70
|
+ </if>
|
|
|
71
|
+ <if test="exchangeId != null">
|
|
|
72
|
+ exchange_id,
|
|
|
73
|
+ </if>
|
|
|
74
|
+ <if test="exchangeName != null">
|
|
|
75
|
+ exchange_name,
|
|
|
76
|
+ </if>
|
|
|
77
|
+ <if test="queueId != null">
|
|
|
78
|
+ queue_id,
|
|
|
79
|
+ </if>
|
|
|
80
|
+ <if test="queueName != null">
|
|
|
81
|
+ queue_name,
|
|
|
82
|
+ </if>
|
|
|
83
|
+ <if test="routingKeyId != null">
|
|
|
84
|
+ routing_key_id,
|
|
|
85
|
+ </if>
|
|
|
86
|
+ <if test="routingKeyName != null">
|
|
|
87
|
+ routing_key_name,
|
|
|
88
|
+ </if>
|
|
|
89
|
+ <if test="subscriber != null">
|
|
|
90
|
+ subscriber,
|
|
|
91
|
+ </if>
|
|
|
92
|
+ <if test="gmtCreate != null">
|
|
|
93
|
+ gmt_create,
|
|
|
94
|
+ </if>
|
|
|
95
|
+ <if test="gmtModified != null">
|
|
|
96
|
+ gmt_modified,
|
|
|
97
|
+ </if>
|
|
|
98
|
+ </trim>
|
|
|
99
|
+ <trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
100
|
+ <if test="id != null">
|
|
|
101
|
+ #{id,jdbcType=VARCHAR},
|
|
|
102
|
+ </if>
|
|
|
103
|
+ <if test="userId != null">
|
|
|
104
|
+ #{userId,jdbcType=VARCHAR},
|
|
|
105
|
+ </if>
|
|
|
106
|
+ <if test="username != null">
|
|
|
107
|
+ #{username,jdbcType=VARCHAR},
|
|
|
108
|
+ </if>
|
|
|
109
|
+ <if test="virtualHostId != null">
|
|
|
110
|
+ #{virtualHostId,jdbcType=VARCHAR},
|
|
|
111
|
+ </if>
|
|
|
112
|
+ <if test="virtualHostName != null">
|
|
|
113
|
+ #{virtualHostName,jdbcType=VARCHAR},
|
|
|
114
|
+ </if>
|
|
|
115
|
+ <if test="exchangeId != null">
|
|
|
116
|
+ #{exchangeId,jdbcType=VARCHAR},
|
|
|
117
|
+ </if>
|
|
|
118
|
+ <if test="exchangeName != null">
|
|
|
119
|
+ #{exchangeName,jdbcType=VARCHAR},
|
|
|
120
|
+ </if>
|
|
|
121
|
+ <if test="queueId != null">
|
|
|
122
|
+ #{queueId,jdbcType=VARCHAR},
|
|
|
123
|
+ </if>
|
|
|
124
|
+ <if test="queueName != null">
|
|
|
125
|
+ #{queueName,jdbcType=VARCHAR},
|
|
|
126
|
+ </if>
|
|
|
127
|
+ <if test="routingKeyId != null">
|
|
|
128
|
+ #{routingKeyId,jdbcType=VARCHAR},
|
|
|
129
|
+ </if>
|
|
|
130
|
+ <if test="routingKeyName != null">
|
|
|
131
|
+ #{routingKeyName,jdbcType=VARCHAR},
|
|
|
132
|
+ </if>
|
|
|
133
|
+ <if test="subscriber != null">
|
|
|
134
|
+ #{subscriber,jdbcType=VARCHAR},
|
|
|
135
|
+ </if>
|
|
|
136
|
+ <if test="gmtCreate != null">
|
|
|
137
|
+ #{gmtCreate,jdbcType=TIMESTAMP},
|
|
|
138
|
+ </if>
|
|
|
139
|
+ <if test="gmtModified != null">
|
|
|
140
|
+ #{gmtModified,jdbcType=TIMESTAMP},
|
|
|
141
|
+ </if>
|
|
|
142
|
+ </trim>
|
|
|
143
|
+ </insert>
|
|
|
144
|
+ <update id="updateByPrimaryKeySelective" parameterType="com.sunyo.wlpt.message.bus.service.domain.UserMessageBinding">
|
|
|
145
|
+ <!--@mbg.generated-->
|
|
|
146
|
+ update user_message_binding
|
|
|
147
|
+ <set>
|
|
|
148
|
+ <if test="userId != null">
|
|
|
149
|
+ user_id = #{userId,jdbcType=VARCHAR},
|
|
|
150
|
+ </if>
|
|
|
151
|
+ <if test="username != null">
|
|
|
152
|
+ username = #{username,jdbcType=VARCHAR},
|
|
|
153
|
+ </if>
|
|
|
154
|
+ <if test="virtualHostId != null">
|
|
|
155
|
+ virtual_host_id = #{virtualHostId,jdbcType=VARCHAR},
|
|
|
156
|
+ </if>
|
|
|
157
|
+ <if test="virtualHostName != null">
|
|
|
158
|
+ virtual_host_name = #{virtualHostName,jdbcType=VARCHAR},
|
|
|
159
|
+ </if>
|
|
|
160
|
+ <if test="exchangeId != null">
|
|
|
161
|
+ exchange_id = #{exchangeId,jdbcType=VARCHAR},
|
|
|
162
|
+ </if>
|
|
|
163
|
+ <if test="exchangeName != null">
|
|
|
164
|
+ exchange_name = #{exchangeName,jdbcType=VARCHAR},
|
|
|
165
|
+ </if>
|
|
|
166
|
+ <if test="queueId != null">
|
|
|
167
|
+ queue_id = #{queueId,jdbcType=VARCHAR},
|
|
|
168
|
+ </if>
|
|
|
169
|
+ <if test="queueName != null">
|
|
|
170
|
+ queue_name = #{queueName,jdbcType=VARCHAR},
|
|
|
171
|
+ </if>
|
|
|
172
|
+ <if test="routingKeyId != null">
|
|
|
173
|
+ routing_key_id = #{routingKeyId,jdbcType=VARCHAR},
|
|
|
174
|
+ </if>
|
|
|
175
|
+ <if test="routingKeyName != null">
|
|
|
176
|
+ routing_key_name = #{routingKeyName,jdbcType=VARCHAR},
|
|
|
177
|
+ </if>
|
|
|
178
|
+ <if test="subscriber != null">
|
|
|
179
|
+ subscriber = #{subscriber,jdbcType=VARCHAR},
|
|
|
180
|
+ </if>
|
|
|
181
|
+ <if test="gmtCreate != null">
|
|
|
182
|
+ gmt_create = #{gmtCreate,jdbcType=TIMESTAMP},
|
|
|
183
|
+ </if>
|
|
|
184
|
+ <if test="gmtModified != null">
|
|
|
185
|
+ gmt_modified = #{gmtModified,jdbcType=TIMESTAMP},
|
|
|
186
|
+ </if>
|
|
|
187
|
+ </set>
|
|
|
188
|
+ where id = #{id,jdbcType=VARCHAR}
|
|
|
189
|
+ </update>
|
|
|
190
|
+ <update id="updateByPrimaryKey" parameterType="com.sunyo.wlpt.message.bus.service.domain.UserMessageBinding">
|
|
|
191
|
+ <!--@mbg.generated-->
|
|
|
192
|
+ update user_message_binding
|
|
|
193
|
+ set user_id = #{userId,jdbcType=VARCHAR},
|
|
|
194
|
+ username = #{username,jdbcType=VARCHAR},
|
|
|
195
|
+ virtual_host_id = #{virtualHostId,jdbcType=VARCHAR},
|
|
|
196
|
+ virtual_host_name = #{virtualHostName,jdbcType=VARCHAR},
|
|
|
197
|
+ exchange_id = #{exchangeId,jdbcType=VARCHAR},
|
|
|
198
|
+ exchange_name = #{exchangeName,jdbcType=VARCHAR},
|
|
|
199
|
+ queue_id = #{queueId,jdbcType=VARCHAR},
|
|
|
200
|
+ queue_name = #{queueName,jdbcType=VARCHAR},
|
|
|
201
|
+ routing_key_id = #{routingKeyId,jdbcType=VARCHAR},
|
|
|
202
|
+ routing_key_name = #{routingKeyName,jdbcType=VARCHAR},
|
|
|
203
|
+ subscriber = #{subscriber,jdbcType=VARCHAR},
|
|
|
204
|
+ gmt_create = #{gmtCreate,jdbcType=TIMESTAMP},
|
|
|
205
|
+ gmt_modified = #{gmtModified,jdbcType=TIMESTAMP}
|
|
|
206
|
+ where id = #{id,jdbcType=VARCHAR}
|
|
|
207
|
+ </update>
|
29
|
<!-- 查询列表,选择性 -->
|
208
|
<!-- 查询列表,选择性 -->
|
30
|
- <select id="selectUserMessageBindingList"
|
|
|
31
|
- parameterType="com.sunyo.wlpt.message.bus.service.domain.UserMessageBinding" resultMap="BaseResultMap">
|
209
|
+ <select id="selectUserMessageBindingList" parameterType="com.sunyo.wlpt.message.bus.service.domain.UserMessageBinding" resultMap="BaseResultMap">
|
32
|
select
|
210
|
select
|
33
|
- <include refid="Base_Column_List"/>
|
211
|
+ <include refid="Base_Column_List" />
|
34
|
from user_message_binding
|
212
|
from user_message_binding
|
35
|
<where>
|
213
|
<where>
|
36
|
<!-- 所属用户登陆名称 -->
|
214
|
<!-- 所属用户登陆名称 -->
|
|
@@ -60,116 +238,4 @@ |
|
@@ -60,116 +238,4 @@ |
60
|
</where>
|
238
|
</where>
|
61
|
</select>
|
239
|
</select>
|
62
|
|
240
|
|
63
|
- <delete id="deleteByPrimaryKey" parameterType="java.lang.String">
|
|
|
64
|
- <!--@mbg.generated-->
|
|
|
65
|
- delete from user_message_binding
|
|
|
66
|
- where id = #{id,jdbcType=VARCHAR}
|
|
|
67
|
- </delete>
|
|
|
68
|
- <insert id="insert" parameterType="com.sunyo.wlpt.message.bus.service.domain.UserMessageBinding">
|
|
|
69
|
- <!--@mbg.generated-->
|
|
|
70
|
- insert into user_message_binding (id, username, virtual_host_name,
|
|
|
71
|
- exchange_name, routing_key_name, subscriber,
|
|
|
72
|
- gmt_create, gmt_modified)
|
|
|
73
|
- values (#{id,jdbcType=VARCHAR}, #{username,jdbcType=VARCHAR}, #{virtualHostName,jdbcType=VARCHAR},
|
|
|
74
|
- #{exchangeName,jdbcType=VARCHAR}, #{routingKeyName,jdbcType=VARCHAR}, #{subscriber,jdbcType=VARCHAR},
|
|
|
75
|
- #{gmtCreate,jdbcType=TIMESTAMP}, #{gmtModified,jdbcType=TIMESTAMP})
|
|
|
76
|
- </insert>
|
|
|
77
|
- <insert id="insertSelective" parameterType="com.sunyo.wlpt.message.bus.service.domain.UserMessageBinding">
|
|
|
78
|
- <!--@mbg.generated-->
|
|
|
79
|
- insert into user_message_binding
|
|
|
80
|
- <trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
81
|
- <if test="id != null">
|
|
|
82
|
- id,
|
|
|
83
|
- </if>
|
|
|
84
|
- <if test="username != null">
|
|
|
85
|
- username,
|
|
|
86
|
- </if>
|
|
|
87
|
- <if test="virtualHostName != null">
|
|
|
88
|
- virtual_host_name,
|
|
|
89
|
- </if>
|
|
|
90
|
- <if test="exchangeName != null">
|
|
|
91
|
- exchange_name,
|
|
|
92
|
- </if>
|
|
|
93
|
- <if test="routingKeyName != null">
|
|
|
94
|
- routing_key_name,
|
|
|
95
|
- </if>
|
|
|
96
|
- <if test="subscriber != null">
|
|
|
97
|
- subscriber,
|
|
|
98
|
- </if>
|
|
|
99
|
- <if test="gmtCreate != null">
|
|
|
100
|
- gmt_create,
|
|
|
101
|
- </if>
|
|
|
102
|
- <if test="gmtModified != null">
|
|
|
103
|
- gmt_modified,
|
|
|
104
|
- </if>
|
|
|
105
|
- </trim>
|
|
|
106
|
- <trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
107
|
- <if test="id != null">
|
|
|
108
|
- #{id,jdbcType=VARCHAR},
|
|
|
109
|
- </if>
|
|
|
110
|
- <if test="username != null">
|
|
|
111
|
- #{username,jdbcType=VARCHAR},
|
|
|
112
|
- </if>
|
|
|
113
|
- <if test="virtualHostName != null">
|
|
|
114
|
- #{virtualHostName,jdbcType=VARCHAR},
|
|
|
115
|
- </if>
|
|
|
116
|
- <if test="exchangeName != null">
|
|
|
117
|
- #{exchangeName,jdbcType=VARCHAR},
|
|
|
118
|
- </if>
|
|
|
119
|
- <if test="routingKeyName != null">
|
|
|
120
|
- #{routingKeyName,jdbcType=VARCHAR},
|
|
|
121
|
- </if>
|
|
|
122
|
- <if test="subscriber != null">
|
|
|
123
|
- #{subscriber,jdbcType=VARCHAR},
|
|
|
124
|
- </if>
|
|
|
125
|
- <if test="gmtCreate != null">
|
|
|
126
|
- #{gmtCreate,jdbcType=TIMESTAMP},
|
|
|
127
|
- </if>
|
|
|
128
|
- <if test="gmtModified != null">
|
|
|
129
|
- #{gmtModified,jdbcType=TIMESTAMP},
|
|
|
130
|
- </if>
|
|
|
131
|
- </trim>
|
|
|
132
|
- </insert>
|
|
|
133
|
- <update id="updateByPrimaryKeySelective"
|
|
|
134
|
- parameterType="com.sunyo.wlpt.message.bus.service.domain.UserMessageBinding">
|
|
|
135
|
- <!--@mbg.generated-->
|
|
|
136
|
- update user_message_binding
|
|
|
137
|
- <set>
|
|
|
138
|
- <if test="username != null">
|
|
|
139
|
- username = #{username,jdbcType=VARCHAR},
|
|
|
140
|
- </if>
|
|
|
141
|
- <if test="virtualHostName != null">
|
|
|
142
|
- virtual_host_name = #{virtualHostName,jdbcType=VARCHAR},
|
|
|
143
|
- </if>
|
|
|
144
|
- <if test="exchangeName != null">
|
|
|
145
|
- exchange_name = #{exchangeName,jdbcType=VARCHAR},
|
|
|
146
|
- </if>
|
|
|
147
|
- <if test="routingKeyName != null">
|
|
|
148
|
- routing_key_name = #{routingKeyName,jdbcType=VARCHAR},
|
|
|
149
|
- </if>
|
|
|
150
|
- <if test="subscriber != null">
|
|
|
151
|
- subscriber = #{subscriber,jdbcType=VARCHAR},
|
|
|
152
|
- </if>
|
|
|
153
|
- <if test="gmtCreate != null">
|
|
|
154
|
- gmt_create = #{gmtCreate,jdbcType=TIMESTAMP},
|
|
|
155
|
- </if>
|
|
|
156
|
- <if test="gmtModified != null">
|
|
|
157
|
- gmt_modified = #{gmtModified,jdbcType=TIMESTAMP},
|
|
|
158
|
- </if>
|
|
|
159
|
- </set>
|
|
|
160
|
- where id = #{id,jdbcType=VARCHAR}
|
|
|
161
|
- </update>
|
|
|
162
|
- <update id="updateByPrimaryKey" parameterType="com.sunyo.wlpt.message.bus.service.domain.UserMessageBinding">
|
|
|
163
|
- <!--@mbg.generated-->
|
|
|
164
|
- update user_message_binding
|
|
|
165
|
- set username = #{username,jdbcType=VARCHAR},
|
|
|
166
|
- virtual_host_name = #{virtualHostName,jdbcType=VARCHAR},
|
|
|
167
|
- exchange_name = #{exchangeName,jdbcType=VARCHAR},
|
|
|
168
|
- routing_key_name = #{routingKeyName,jdbcType=VARCHAR},
|
|
|
169
|
- subscriber = #{subscriber,jdbcType=VARCHAR},
|
|
|
170
|
- gmt_create = #{gmtCreate,jdbcType=TIMESTAMP},
|
|
|
171
|
- gmt_modified = #{gmtModified,jdbcType=TIMESTAMP}
|
|
|
172
|
- where id = #{id,jdbcType=VARCHAR}
|
|
|
173
|
- </update>
|
|
|
174
|
-
|
|
|
175
|
-</mapper> |
241
|
+</mapper> |