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

13 lines
380 B
Plaintext

package com.healthcare.ohctech.repository;
import com.healthcare.ohctech.entity.FoodNutrient;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
import java.util.List;
@Repository
public interface FoodNutrientRepo extends JpaRepository<FoodNutrient, Long> {
List<FoodNutrient> findByFoodMasterId(Long foodId);
}