From 06d3a2b2801ecaaa60a3427a70a8179164ffedb9 Mon Sep 17 00:00:00 2001 From: Tomas <tomasysh@gmail.com> Date: 星期三, 16 二月 2022 16:44:38 +0800 Subject: [PATCH] Merge branch 'Phase3' of https://dev.pollex.com.tw:8443/r/pcalife/PAM into Phase3 --- pamapi/src/main/java/com/pollex/pam/repository/AppointmentNoticeLogRepository.java | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/pamapi/src/main/java/com/pollex/pam/repository/AppointmentNoticeLogRepository.java b/pamapi/src/main/java/com/pollex/pam/repository/AppointmentNoticeLogRepository.java index b3daada..e939258 100644 --- a/pamapi/src/main/java/com/pollex/pam/repository/AppointmentNoticeLogRepository.java +++ b/pamapi/src/main/java/com/pollex/pam/repository/AppointmentNoticeLogRepository.java @@ -1,5 +1,7 @@ package com.pollex.pam.repository; +import java.util.List; + import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.stereotype.Repository; @@ -8,4 +10,6 @@ @Repository public interface AppointmentNoticeLogRepository extends JpaRepository<AppointmentNoticeLog, Long>{ + List<AppointmentNoticeLog> findByAppointmentId(Long appointmentId); + } -- Gitblit v1.8.0