From 925f8b4ffca99f07c629660d42c48f531b4f77a0 Mon Sep 17 00:00:00 2001
From: wayne <wayne8692wayne8692@gmail.com>
Date: 星期一, 21 二月 2022 18:17:14 +0800
Subject: [PATCH] [update] 移除login_record欄位,改統一放之後 將新開的稽核欄位"audit_logging",並在顧問欄位加開最後上線時間

---
 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