From a3716f72066d25d745f4d5103ff23a553c3e102b Mon Sep 17 00:00:00 2001 From: wayne <wayne8692wayne8692@gmail.com> Date: 星期四, 17 二月 2022 11:41:19 +0800 Subject: [PATCH] Merge branch 'sit' into uat --- pamapi/src/main/java/com/pollex/pam/repository/AppointmentNoticeLogRepository.java | 15 +++++++++++++++ 1 files changed, 15 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 new file mode 100644 index 0000000..e939258 --- /dev/null +++ b/pamapi/src/main/java/com/pollex/pam/repository/AppointmentNoticeLogRepository.java @@ -0,0 +1,15 @@ +package com.pollex.pam.repository; + +import java.util.List; + +import org.springframework.data.jpa.repository.JpaRepository; +import org.springframework.stereotype.Repository; + +import com.pollex.pam.domain.AppointmentNoticeLog; + +@Repository +public interface AppointmentNoticeLogRepository extends JpaRepository<AppointmentNoticeLog, Long>{ + + List<AppointmentNoticeLog> findByAppointmentId(Long appointmentId); + +} -- Gitblit v1.8.0