ohctechv3/.svn/pristine/42/42f9bd5894952fa7ae1143a0430656433b30d855.svn-base
2024-10-28 15:03:36 +05:30

14 lines
412 B
Plaintext

package com.healthcare.ohctech.repository;
import com.healthcare.ohctech.entity.CheckupFormKeyValue;
import com.healthcare.ohctech.entity.Section;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
import java.util.Optional;
@Repository
public interface SectionRepo extends JpaRepository<Section, Long> {
Optional<Section> findById(Long id);
}