From ac594e4efb30ba28776d74b0fb08ab34d7c32023 Mon Sep 17 00:00:00 2001
From: HelenHuang <LinHuang@pollex.com.tw>
Date: 星期四, 30 十二月 2021 15:20:08 +0800
Subject: [PATCH] Merge branch 'Phase2'

---
 pamapi/src/main/java/com/pollex/pam/service/dto/SatisfactionDTO.java |   28 +++++++++++++++++++++++++---
 1 files changed, 25 insertions(+), 3 deletions(-)

diff --git a/pamapi/src/main/java/com/pollex/pam/service/dto/SatisfactionDTO.java b/pamapi/src/main/java/com/pollex/pam/service/dto/SatisfactionDTO.java
index 8d0fba4..5a6c4ae 100644
--- a/pamapi/src/main/java/com/pollex/pam/service/dto/SatisfactionDTO.java
+++ b/pamapi/src/main/java/com/pollex/pam/service/dto/SatisfactionDTO.java
@@ -5,7 +5,7 @@
 import com.pollex.pam.enums.SatisfactionStatusEnum;
 
 public class SatisfactionDTO {
-	
+
 	private Long id;
     private Instant createdDate;
     private Instant lastModifiedDate;
@@ -13,6 +13,10 @@
     private String agentNo;
     private SatisfactionStatusEnum status;
     private Float score;
+    private Long appointmentId;
+    private String customerName;
+    private String agentName;
+    
 	public Long getId() {
 		return id;
 	}
@@ -55,6 +59,24 @@
 	public void setScore(Float score) {
 		this.score = score;
 	}
-    
-    
+	public Long getAppointmentId() {
+		return appointmentId;
+	}
+	public void setAppointmentId(Long appointmentId) {
+		this.appointmentId = appointmentId;
+	}
+	public String getCustomerName() {
+		return customerName;
+	}
+	public void setCustomerName(String customerName) {
+		this.customerName = customerName;
+	}
+	public String getAgentName() {
+		return agentName;
+	}
+	public void setAgentName(String agentName) {
+		this.agentName = agentName;
+	}
+	
+
 }

--
Gitblit v1.8.0