From 08e656058e05bd89fa36de8d93bd59a079539123 Mon Sep 17 00:00:00 2001 From: wayne <wayne8692wayne8692@gmail.com> Date: 星期三, 09 二月 2022 18:00:12 +0800 Subject: [PATCH] [update] 服務地區恢復成用字串的方式給,並因匹配度改由後端做,因此把給全部顧問的api移除,繼續使用原快速篩選與嚴選配對的功能 --- pamapi/src/main/java/com/pollex/pam/service/dto/AppointmentCustomerViewDTO.java | 18 ++++++++++++++++++ 1 files changed, 18 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 3028ea9..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,7 +3,9 @@ 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; import com.pollex.pam.enums.ContactStatusEnum; @@ -31,6 +33,8 @@ private Float satisfactionScore; private List<AppointmentMemo> appointmentMemoList; private List<InterviewRecordDTO> interviewRecordDTOs; + private List<AppointmentNoticeLog> appointmentNoticeLogs; + private AppointmentClosedInfo appointmentClosedInfo; public Long getId() { return id; @@ -164,6 +168,20 @@ public void setInterviewRecordDTOs(List<InterviewRecordDTO> interviewRecordDTOs) { this.interviewRecordDTOs = interviewRecordDTOs; } + public List<AppointmentNoticeLog> getAppointmentNoticeLogs() { + return appointmentNoticeLogs; + } + 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