Done Ticket GEPAFINBE-204

This commit is contained in:
Piyush
2025-04-11 12:21:25 +05:30
parent af622208ed
commit e2c19ccafb
7 changed files with 230 additions and 30 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> {
}