From 98471b0ef1a5751c8acea4354c93c63a1e95d42c Mon Sep 17 00:00:00 2001 From: Jack <jack.su@pollex.com.tw> Date: 星期五, 14 一月 2022 17:43:41 +0800 Subject: [PATCH] [ADD] 查詢顧問詳細資料新增email欄位 --- pamapi/src/main/java/com/pollex/pam/service/dto/AppointmentCustomerViewDTO.java | 27 +++++++++++++++++++++++++++ 1 files changed, 27 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 5605843..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 @@ -1,7 +1,11 @@ package com.pollex.pam.service.dto; import java.time.Instant; +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 { @@ -26,6 +30,9 @@ private Instant consultantReadTime; private Instant contactTime; private Float satisfactionScore; + private List<AppointmentMemo> appointmentMemoList; + private List<InterviewRecordDTO> interviewRecordDTOs; + private List<AppointmentNoticeLog> appointmentNoticeLogs; public Long getId() { return id; @@ -147,4 +154,24 @@ public void setSatisfactionScore(Float satisfactionScore) { this.satisfactionScore = satisfactionScore; } + public List<AppointmentMemo> getAppointmentMemoList() { + return appointmentMemoList; + } + 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