Merge pull request #266 from Kitzanos/feature/GEPAFINBE-204

GEPAFINBE-204(Create View For Assigned Application Pagination API)
This commit is contained in:
Rinaldo
2025-04-11 14:20:16 +02:00
committed by GitHub
12 changed files with 268 additions and 48 deletions

View File

@@ -0,0 +1,9 @@
package net.gepafin.tendermanagement.repositories;
import net.gepafin.tendermanagement.entities.AssignedApplicationsView;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.jpa.repository.JpaSpecificationExecutor;
public interface AssignedApplicationsViewRepository extends JpaRepository<AssignedApplicationsView,Long> , JpaSpecificationExecutor<AssignedApplicationsView> {
}