package com.pollex.pam.repository; import com.pollex.pam.domain.AppointmentExpiringNotifyRecord; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.stereotype.Repository; import java.util.List; @Repository public interface AppointmentExpiringNotifyRecordRepository extends JpaRepository { List findAllByAppointmentId(Long appointmentId); }