14 lines
440 B
Plaintext
14 lines
440 B
Plaintext
|
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);
|
||
|
}
|