|
|
@@ -8,13 +8,13 @@
|
|
8
|
8
|
<if test="null != uid">
|
|
9
|
9
|
uid,
|
|
10
|
10
|
</if>
|
|
11
|
|
- <if test="null != createTime">
|
|
|
11
|
+ <if test="null != create_time">
|
|
12
|
12
|
create_time,
|
|
13
|
13
|
</if>
|
|
14
|
|
- <if test="null != delFlag">
|
|
|
14
|
+ <if test="null != del_flag">
|
|
15
|
15
|
del_flag,
|
|
16
|
16
|
</if>
|
|
17
|
|
- <if test="null != bindUid">
|
|
|
17
|
+ <if test="null != bind_uid">
|
|
18
|
18
|
bind_uid,
|
|
19
|
19
|
</if>
|
|
20
|
20
|
<if test="null != type">
|
|
|
@@ -26,14 +26,14 @@
|
|
26
|
26
|
<if test="null != uid">
|
|
27
|
27
|
#{ uid },
|
|
28
|
28
|
</if>
|
|
29
|
|
- <if test="null != createTime">
|
|
30
|
|
- #{ createTime },
|
|
|
29
|
+ <if test="null != create_time">
|
|
|
30
|
+ #{create_time},
|
|
31
|
31
|
</if>
|
|
32
|
|
- <if test="null != delFlag">
|
|
33
|
|
- #{ delFlag },
|
|
|
32
|
+ <if test="null != del_flag">
|
|
|
33
|
+ #{del_flag},
|
|
34
|
34
|
</if>
|
|
35
|
|
- <if test="null != bindUid">
|
|
36
|
|
- #{ bindUid },
|
|
|
35
|
+ <if test="null != bind_uid">
|
|
|
36
|
+ #{bind_uid},
|
|
37
|
37
|
</if>
|
|
38
|
38
|
<if test="null != type">
|
|
39
|
39
|
#{ type },
|
|
|
@@ -47,14 +47,14 @@
|
|
47
|
47
|
<if test="null != uid">
|
|
48
|
48
|
uid = #{ uid },
|
|
49
|
49
|
</if>
|
|
50
|
|
- <if test="null != createTime">
|
|
51
|
|
- create_time = #{ createTime },
|
|
|
50
|
+ <if test="null != create_time">
|
|
|
51
|
+ create_time = #{create_time},
|
|
52
|
52
|
</if>
|
|
53
|
|
- <if test="null != delFlag">
|
|
54
|
|
- del_flag = #{ delFlag },
|
|
|
53
|
+ <if test="null != del_flag">
|
|
|
54
|
+ del_flag = #{del_flag},
|
|
55
|
55
|
</if>
|
|
56
|
|
- <if test="null != bindUid">
|
|
57
|
|
- bind_uid = #{ bindUid },
|
|
|
56
|
+ <if test="null != bind_uid">
|
|
|
57
|
+ bind_uid = #{bind_uid},
|
|
58
|
58
|
</if>
|
|
59
|
59
|
<if test="null != type">
|
|
60
|
60
|
type = #{ type },
|
|
|
@@ -70,5 +70,4 @@
|
|
70
|
70
|
<select id="selectUid" resultType="java.lang.Integer">
|
|
71
|
71
|
select uid from user_bind where del_flag = 0 and type = 0 and bind_uid = #{bindUid}
|
|
72
|
72
|
</select>
|
|
73
|
|
-
|
|
74
|
73
|
</mapper>
|