From 943b8dfc3fd82d76d46cde1834972270d4aa868a Mon Sep 17 00:00:00 2001 From: Tomas <tomasysh@gmail.com> Date: 星期三, 12 一月 2022 16:06:40 +0800 Subject: [PATCH] update: 串接預約單流程(新增採訪紀錄, 結案頁面, 預約單列表細節) --- pamapi/src/main/java/com/pollex/pam/service/dto/AppointmentCustomerViewDTO.java | 16 ++++++++++++++++ 1 files changed, 16 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 7a198a5..3c13edb 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 @@ -4,6 +4,8 @@ import java.util.List; import com.pollex.pam.domain.AppointmentMemo; +import com.pollex.pam.domain.AppointmentNoticeLog; +import com.pollex.pam.domain.InterviewRecord; import com.pollex.pam.enums.ContactStatusEnum; public class AppointmentCustomerViewDTO { @@ -29,6 +31,8 @@ private Instant contactTime; private Float satisfactionScore; private List<AppointmentMemo> appointmentMemoList; + private List<InterviewRecordDTO> interviewRecordDTOs; + private List<AppointmentNoticeLog> appointmentNoticeLogs; public Long getId() { return id; @@ -156,6 +160,18 @@ public void setAppointmentMemoList(List<AppointmentMemo> appointmentMemoList) { this.appointmentMemoList = appointmentMemoList; } + public List<InterviewRecordDTO> getInterviewRecordDTOs() { + return interviewRecordDTOs; + } + public void setInterviewRecordDTOs(List<InterviewRecordDTO> interviewRecordDTOs) { + this.interviewRecordDTOs = interviewRecordDTOs; + } + public List<AppointmentNoticeLog> getAppointmentNoticeLogs() { + return appointmentNoticeLogs; + } + public void setAppointmentNoticeLogs(List<AppointmentNoticeLog> appointmentNoticeLogs) { + this.appointmentNoticeLogs = appointmentNoticeLogs; + } } -- Gitblit v1.8.0