From e2fd08cfedded28d1679a4e3bcb4213e965be756 Mon Sep 17 00:00:00 2001
From: wayne <wayne8692wayne8692@gmail.com>
Date: 星期六, 22 一月 2022 17:06:43 +0800
Subject: [PATCH] [bug] [todo 134617] 修正預約單在我的顧問清單狀態

---
 pamapi/src/main/java/com/pollex/pam/service/AppointmentClosedInfoService.java |   14 +++++++++++++-
 1 files changed, 13 insertions(+), 1 deletions(-)

diff --git a/pamapi/src/main/java/com/pollex/pam/service/AppointmentClosedInfoService.java b/pamapi/src/main/java/com/pollex/pam/service/AppointmentClosedInfoService.java
index dbed395..9931a44 100644
--- a/pamapi/src/main/java/com/pollex/pam/service/AppointmentClosedInfoService.java
+++ b/pamapi/src/main/java/com/pollex/pam/service/AppointmentClosedInfoService.java
@@ -1,10 +1,22 @@
 package com.pollex.pam.service;
 
+import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.stereotype.Service;
 import org.springframework.transaction.annotation.Transactional;
+
+import com.pollex.pam.domain.AppointmentClosedInfo;
+import com.pollex.pam.repository.AppointmentClosedInfoRepository;
+import com.pollex.pam.web.rest.errors.AppointmentClosedInfoNotFoundException;
 
 @Service
 @Transactional
 public class AppointmentClosedInfoService {
-
+	
+	@Autowired
+	AppointmentClosedInfoRepository appointmentClosedInfoRepository;
+	
+	public AppointmentClosedInfo findByAppointmentId(Long apId) {
+		return appointmentClosedInfoRepository.findByAppointmentId(apId)
+				.orElseThrow(AppointmentClosedInfoNotFoundException::new);
+	}
 }

--
Gitblit v1.8.0