id, org_name, ext_name, new_name, hash, file_path
delete from oth_file
where id = #{id}
insert into oth_file (id, org_name, ext_name, new_name, hash, file_path)
values (#{id}, #{orgName}, #{extName}, #{newName}, #{hash}, #{filePath})
insert into oth_file
id,
org_name,
ext_name,
new_name,
hash,
file_path,
#{id},
#{orgName},
#{extName},
#{newName},
#{hash},
#{filePath},
update oth_file
org_name = #{orgName},
ext_name = #{extName},
new_name = #{newName},
hash = #{hash},
file_path = #{filePath},
where id = #{id}
update oth_file
set org_name = #{orgName},
ext_name = #{extName},
new_name = #{newName},
hash = #{hash},
file_path = #{filePath}
where id = #{id}