ohctechv3/.svn/pristine/86/86b8b6fb296f5ca45072e8eb317f95e1b9ddc915.svn-base

14 lines
440 B
Plaintext
Raw Normal View History

2024-10-28 15:03:36 +05:30
package com.healthcare.ohctech.repository;
import com.healthcare.ohctech.entity.CheckupFormKeyValue;
import com.healthcare.ohctech.entity.CompanyProfile;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
import java.util.Optional;
@Repository
public interface CompanyProfileRepo extends JpaRepository<CompanyProfile, Long> {
Optional<CompanyProfile> findById(Long id);
}