From f2c1313c7637c8bb2ab8b3583adbd327855cdd1d Mon Sep 17 00:00:00 2001 From: Tomas <tomasysh@gmail.com> Date: 星期一, 10 一月 2022 08:32:16 +0800 Subject: [PATCH] Merge branch 'Phase3' of https://dev.pollex.com.tw:8443/r/pcalife/PAM into Phase3 --- pamapi/src/main/java/com/pollex/pam/service/dto/AppointmentCustomerViewDTO.java | 8 ++++++++ 1 files changed, 8 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..3028ea9 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,7 @@ import java.util.List; import com.pollex.pam.domain.AppointmentMemo; +import com.pollex.pam.domain.InterviewRecord; import com.pollex.pam.enums.ContactStatusEnum; public class AppointmentCustomerViewDTO { @@ -29,6 +30,7 @@ private Instant contactTime; private Float satisfactionScore; private List<AppointmentMemo> appointmentMemoList; + private List<InterviewRecordDTO> interviewRecordDTOs; public Long getId() { return id; @@ -156,6 +158,12 @@ public void setAppointmentMemoList(List<AppointmentMemo> appointmentMemoList) { this.appointmentMemoList = appointmentMemoList; } + public List<InterviewRecordDTO> getInterviewRecordDTOs() { + return interviewRecordDTOs; + } + public void setInterviewRecordDTOs(List<InterviewRecordDTO> interviewRecordDTOs) { + this.interviewRecordDTOs = interviewRecordDTOs; + } } -- Gitblit v1.8.0