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