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

14 lines
416 B
Plaintext

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