From 15d0db28cb2f7c5214963a3c39b39dfddbe4f884 Mon Sep 17 00:00:00 2001
From: wayne <wayne8692wayne8692@gmail.com>
Date: 星期二, 04 一月 2022 17:45:56 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'

---
 pamapi/src/main/java/com/pollex/pam/service/dto/AppointmentCustomerViewDTO.java |   11 +++++++++++
 1 files changed, 11 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..7a198a5 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,9 @@
 package com.pollex.pam.service.dto;
 
 import java.time.Instant;
+import java.util.List;
 
+import com.pollex.pam.domain.AppointmentMemo;
 import com.pollex.pam.enums.ContactStatusEnum;
 
 public class AppointmentCustomerViewDTO {
@@ -26,6 +28,7 @@
     private Instant consultantReadTime;
     private Instant contactTime;
     private Float satisfactionScore;
+    private List<AppointmentMemo> appointmentMemoList;
 
 	public Long getId() {
 		return id;
@@ -147,4 +150,12 @@
     public void setSatisfactionScore(Float satisfactionScore) {
         this.satisfactionScore = satisfactionScore;
     }
+	public List<AppointmentMemo> getAppointmentMemoList() {
+		return appointmentMemoList;
+	}
+	public void setAppointmentMemoList(List<AppointmentMemo> appointmentMemoList) {
+		this.appointmentMemoList = appointmentMemoList;
+	}
+    
+    
 }

--
Gitblit v1.8.0