insert into k4_bs_sys_function_info (uid, "name", remark, update_time, puid)
values (#{uid,jdbcType=VARCHAR},
#{name,jdbcType=VARCHAR},
#{remark,jdbcType=VARCHAR},
localtimestamp(0),
#{puid,jdbcType=VARCHAR})
on conflict (uid) do update set "name" = excluded."name",
remark = excluded.remark,
update_time = excluded.update_time,
puid = excluded.puid
delete from k4_bs_sys_function_info
where uid in
#{uid, jdbcType=VARCHAR}