Merge branch 'update-feature/GEPAFINBE-6' of https://github.com/Kitzanos/GEPAFIN-BE into update-feature/GEPAFINBE-6

This commit is contained in:
rajesh
2024-08-28 12:38:38 +05:30
6 changed files with 83 additions and 11 deletions

View File

@@ -4,6 +4,10 @@ import net.gepafin.tendermanagement.entities.LookUpDataEntity;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
import java.util.List;
import java.util.Optional;
@Repository
public interface LookUpDataRepository extends JpaRepository<LookUpDataEntity,Long> {
List<LookUpDataEntity> findByType(String type);
}