File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
xxl-mq-admin2/src/main/resources/mapper Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 22
22
</sql >
23
23
24
24
<insert id =" insert" parameterType =" java.util.Map" >
25
- INSERT INTO instance (
25
+ INSERT INTO xxl_mq_instance (
26
26
`appname`,
27
27
`uuid`,
28
28
`register_heartbeat`,
39
39
</insert >
40
40
41
41
<delete id =" delete" parameterType =" java.util.Map" >
42
- DELETE FROM instance
42
+ DELETE FROM xxl_mq_instance
43
43
WHERE `id` in
44
44
<foreach collection =" ids" item =" item" open =" (" close =" )" separator =" ," >
45
45
#{item}
46
46
</foreach >
47
47
</delete >
48
48
49
49
<update id =" update" parameterType =" java.util.Map" >
50
- UPDATE instance
50
+ UPDATE xxl_mq_instance
51
51
SET
52
52
`appname` = #{instance.appname},
53
53
`uuid` = #{instance.uuid},
58
58
59
59
<select id =" load" parameterType =" java.util.Map" resultMap =" Instance" >
60
60
SELECT <include refid =" Base_Column_List" />
61
- FROM instance AS t
61
+ FROM xxl_mq_instance AS t
62
62
WHERE t.`id` = #{id}
63
63
</select >
64
64
65
65
<select id =" pageList" parameterType =" java.util.Map" resultMap =" Instance" >
66
66
SELECT <include refid =" Base_Column_List" />
67
- FROM instance AS t
67
+ FROM xxl_mq_instance AS t
68
68
LIMIT #{offset}, #{pagesize}
69
69
</select >
70
70
71
71
<select id =" pageListCount" parameterType =" java.util.Map" resultType =" int" >
72
72
SELECT count(1)
73
- FROM instance AS t
73
+ FROM xxl_mq_instance AS t
74
74
</select >
75
75
76
76
</mapper >
You can’t perform that action at this time.
0 commit comments