From f8ab133a7dc20562c25a092a402266f5e7b0b296 Mon Sep 17 00:00:00 2001 From: Jack <jack.su@pollex.com.tw> Date: 星期一, 24 一月 2022 10:29:38 +0800 Subject: [PATCH] Merge branch 'Phase3' of ssh://dev.pollex.com.tw:29418/pcalife/PAM into Phase3 --- pamapi/src/main/java/com/pollex/pam/service/dto/AppointmentCustomerViewDTO.java | 65 ++++++++++++++++++++++++++++++-- 1 files changed, 60 insertions(+), 5 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 45368df..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 @@ -1,11 +1,12 @@ package com.pollex.pam.service.dto; import java.time.Instant; +import java.util.List; -import javax.persistence.Column; -import javax.persistence.EnumType; -import javax.persistence.Enumerated; - +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; public class AppointmentCustomerViewDTO { @@ -22,11 +23,19 @@ private String hopeContactTime; private String otherRequirement; private Instant appointmentDate; + private Instant lastModifiedDate; private String agentNo; private Long customerId; private String name; private Instant consultantViewTime; private Instant consultantReadTime; + private Instant contactTime; + private Float satisfactionScore; + private List<AppointmentMemo> appointmentMemoList; + private List<InterviewRecordDTO> interviewRecordDTOs; + private List<AppointmentNoticeLog> appointmentNoticeLogs; + private AppointmentClosedInfo appointmentClosedInfo; + public Long getId() { return id; } @@ -99,7 +108,13 @@ public void setAppointmentDate(Instant appointmentDate) { this.appointmentDate = appointmentDate; } - public String getAgentNo() { + public Instant getLastModifiedDate() { + return lastModifiedDate; + } + public void setLastModifiedDate(Instant lastModifiedDate) { + this.lastModifiedDate = lastModifiedDate; + } + public String getAgentNo() { return agentNo; } public void setAgentNo(String agentNo) { @@ -129,4 +144,44 @@ public void setConsultantReadTime(Instant consultantReadTime) { this.consultantReadTime = consultantReadTime; } + public Instant getContactTime() { + return contactTime; + } + public void setContactTime(Instant contactTime) { + this.contactTime = contactTime; + } + public Float getSatisfactionScore() { + return satisfactionScore; + } + 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; + } + public AppointmentClosedInfo getAppointmentClosedInfo() { + return appointmentClosedInfo; + } + public void setAppointmentClosedInfo(AppointmentClosedInfo appointmentClosedInfo) { + this.appointmentClosedInfo = appointmentClosedInfo; + } + + + + } -- Gitblit v1.8.0