17 lines
334 B
Java
17 lines
334 B
Java
/**
|
|
*
|
|
*/
|
|
package com.jasamedika.medifirst2000.dao;
|
|
|
|
import org.springframework.data.jpa.repository.JpaRepository;
|
|
|
|
import com.jasamedika.medifirst2000.entities.TargetRemunDokter;
|
|
|
|
/**
|
|
* @author Salman
|
|
* @since Apr 3, 2023 7:44:02 AM
|
|
*/
|
|
public interface TargetRemunDokterDao extends JpaRepository<TargetRemunDokter, String> {
|
|
|
|
}
|