From 0ddca4b46f3c9b34b018c66893b8c30624720c79 Mon Sep 17 00:00:00 2001 From: Jack <jack.su@pollex.com.tw> Date: 星期五, 07 一月 2022 16:21:10 +0800 Subject: [PATCH] [ADD] 新增約訪紀錄API [ADD] 修改約訪記錄API [ADD] 刪除約訪記錄API [ADD] 取得顧問所有預約單的API新增約訪紀錄資料 --- pamapi/src/main/java/com/pollex/pam/service/dto/AppointmentCustomerViewDTO.java | 19 +++++++++++++++++++ 1 files changed, 19 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..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 @@ -1,7 +1,10 @@ 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.InterviewRecord; import com.pollex.pam.enums.ContactStatusEnum; public class AppointmentCustomerViewDTO { @@ -26,6 +29,8 @@ private Instant consultantReadTime; private Instant contactTime; private Float satisfactionScore; + private List<AppointmentMemo> appointmentMemoList; + private List<InterviewRecordDTO> interviewRecordDTOs; public Long getId() { return id; @@ -147,4 +152,18 @@ 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; + } + + } -- Gitblit v1.8.0