From e5065dea306c4a3185fbee8c12525cf8c5ef85ee Mon Sep 17 00:00:00 2001
From: Jack <jack.su@pollex.com.tw>
Date: 星期五, 21 一月 2022 17:02:55 +0800
Subject: [PATCH] [ADD] 新增小鈴鐺通知的查詢API [UPDATE] 調整取得最愛顧問清單的狀態判斷 [BUG] 修復結案的進件時間只有日期的問題

---
 pamapi/src/main/java/com/pollex/pam/service/dto/AppointmentCustomerViewDTO.java |   10 ++++++++++
 1 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/pamapi/src/main/java/com/pollex/pam/service/dto/AppointmentCustomerViewDTO.java b/pamapi/src/main/java/com/pollex/pam/service/dto/AppointmentCustomerViewDTO.java
index 3c13edb..6c3f3fb 100644
--- a/pamapi/src/main/java/com/pollex/pam/service/dto/AppointmentCustomerViewDTO.java
+++ b/pamapi/src/main/java/com/pollex/pam/service/dto/AppointmentCustomerViewDTO.java
@@ -3,6 +3,7 @@
 import java.time.Instant;
 import java.util.List;
 
+import com.pollex.pam.domain.AppointmentClosedInfo;
 import com.pollex.pam.domain.AppointmentMemo;
 import com.pollex.pam.domain.AppointmentNoticeLog;
 import com.pollex.pam.domain.InterviewRecord;
@@ -33,6 +34,7 @@
     private List<AppointmentMemo> appointmentMemoList;
     private List<InterviewRecordDTO> interviewRecordDTOs;
     private List<AppointmentNoticeLog> appointmentNoticeLogs;
+    private AppointmentClosedInfo appointmentClosedInfo;
 
 	public Long getId() {
 		return id;
@@ -172,6 +174,14 @@
 	public void setAppointmentNoticeLogs(List<AppointmentNoticeLog> appointmentNoticeLogs) {
 		this.appointmentNoticeLogs = appointmentNoticeLogs;
 	}
+	public AppointmentClosedInfo getAppointmentClosedInfo() {
+		return appointmentClosedInfo;
+	}
+	public void setAppointmentClosedInfo(AppointmentClosedInfo appointmentClosedInfo) {
+		this.appointmentClosedInfo = appointmentClosedInfo;
+	}
+	
+	
     
     
 }

--
Gitblit v1.8.0