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