select name,
source_url,
is_code,
code_type,
rtsp_url,
rtmp_url,
webrtc_url,
create_by,
create_time,
update_by,
update_time
from vtdu
insert into vtdu
name,
source_url,
is_code,
code_type,
rtsp_url,
rtmp_url,
webrtc_url,
create_by,
create_time,
update_by,
update_time,
#{name},
#{sourceUrl},
#{isCode},
#{codeType},
#{rtspUrl},
#{rtmpUrl},
#{webrtcUrl},
#{createBy},
#{createTime},
#{updateBy},
#{updateTime},
update vtdu
source_url = #{sourceUrl},
is_code = #{isCode},
code_type = #{codeType},
rtsp_url = #{rtspUrl},
rtmp_url = #{rtmpUrl},
webrtc_url = #{webrtcUrl},
create_by = #{createBy},
create_time = #{createTime},
update_by = #{updateBy},
update_time = #{updateTime},
where name = #{name}
delete
from vtdu
where name = #{name}
delete from vtdu where name in
#{name}