From c047a3336ff1efc7d21edee6f0c8811264eebae7 Mon Sep 17 00:00:00 2001 From: Mila <Mila@pollex.com.tw> Date: 星期六, 22 一月 2022 15:25:32 +0800 Subject: [PATCH] update: TODO#134222/134105 通知小鈴鐺/取得待評分的滿意度清單, 串接api --- 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