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