replace into auth_platform
(id, name, host)
values
(#{item.id}, #{item.name,jdbcType=VARCHAR}, #{item.host,jdbcType=VARCHAR})
insert into auth_platform(id, name, host)
VALUES (#{id}, #{name}, #{host})
delete
from auth_platform
where id = #{id}
update auth_platform
name = #{name},
host = #{host},
where id = #{id}