updated code

This commit is contained in:
rajesh
2024-10-22 17:24:19 +05:30
parent f764165c0e
commit d02283519b
2 changed files with 2 additions and 2 deletions

View File

@@ -23,7 +23,7 @@ public interface DocumentRepository extends JpaRepository<DocumentEntity, Long>
List<DocumentEntity> findBySourceIdAndSourceAndTypeAndIsDeletedFalse(Long sourceId, String source, String type);
Optional<DocumentEntity> findByIdAndSourceIdAndAndSourceAndIsDeletedFalse(Long id, Long sourceId, String source);
Optional<DocumentEntity> findByIdAndSourceIdAndSourceAndIsDeletedFalse(Long id, Long sourceId, String source);
}