Interface ImportControlRepository
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<ImportControl, Long>, org.springframework.data.jpa.repository.JpaRepository<ImportControl, Long>, org.springframework.data.repository.ListCrudRepository<ImportControl, Long>, org.springframework.data.repository.ListPagingAndSortingRepository<ImportControl, Long>, org.springframework.data.repository.PagingAndSortingRepository<ImportControl, Long>, org.springframework.data.repository.query.QueryByExampleExecutor<ImportControl>, org.springframework.data.repository.Repository<ImportControl, Long>
@Repository
public interface ImportControlRepository
extends org.springframework.data.jpa.repository.JpaRepository<ImportControl, Long>
Repositório para Controle de Importação.
Propósito: Gerenciar metadados de arquivos já processados para evitar re-downloads.
-
Method Summary
Modifier and TypeMethodDescriptionfindByFileName(String fileName) Busca o controle de importação pelo nome do arquivo.Methods inherited from interface org.springframework.data.repository.CrudRepository
count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findById, saveMethods inherited from interface org.springframework.data.jpa.repository.JpaRepository
deleteAllByIdInBatch, deleteAllInBatch, deleteAllInBatch, deleteInBatch, findAll, findAll, flush, getById, getOne, getReferenceById, saveAllAndFlush, saveAndFlushMethods inherited from interface org.springframework.data.repository.ListCrudRepository
findAll, findAllById, saveAllMethods inherited from interface org.springframework.data.repository.ListPagingAndSortingRepository
findAllMethods inherited from interface org.springframework.data.repository.PagingAndSortingRepository
findAllMethods inherited from interface org.springframework.data.repository.query.QueryByExampleExecutor
count, exists, findAll, findBy, findOne
-
Method Details
-
findByFileName
Busca o controle de importação pelo nome do arquivo.- Parameters:
fileName- Nome do arquivo (ex: dfp_cia_aberta_2023.zip).- Returns:
- O controle, se existir.
-