From 9fbf413a72ac13c58f94b433857084946c2e0d9e Mon Sep 17 00:00:00 2001 From: Jack <jack.su@pollex.com.tw> Date: 星期二, 11 一月 2022 17:14:05 +0800 Subject: [PATCH] [ADD] 新增查看預約單通知歷程的API --- 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 3028ea9..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,7 @@ 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; @@ -31,6 +32,7 @@ private Float satisfactionScore; private List<AppointmentMemo> appointmentMemoList; private List<InterviewRecordDTO> interviewRecordDTOs; + private List<AppointmentNoticeLog> appointmentNoticeLogs; public Long getId() { return id; @@ -164,6 +166,12 @@ 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