Added folder structured documents in download Zip API.

This commit is contained in:
piyushkag
2024-12-30 19:44:20 +05:30
parent 9e002ee9db
commit 33fb2d7091
2 changed files with 82 additions and 43 deletions

View File

@@ -33,5 +33,7 @@ public interface DocumentRepository extends JpaRepository<DocumentEntity, Long>
List<DocumentEntity> findAllByIsDeleteTrue();
List<DocumentEntity> findAllByIdInAndIsDeletedFalse(Set<Long> documentIds);
List<DocumentEntity> findBySourceIdInAndSourceAndIsDeletedFalse(Set<Long> sourceId, String type);
}