From 5730601f103ea285d129bf3d89acd649e86c114a Mon Sep 17 00:00:00 2001 From: Tomas <tomasysh@gmail.com> Date: 星期三, 08 十二月 2021 10:17:44 +0800 Subject: [PATCH] separate vue files --- pamapi/src/main/java/com/pollex/pam/service/dto/SatisfactionDTO.java | 23 ++++++++++++++++++++++- 1 files changed, 22 insertions(+), 1 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 e244de1..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 @@ -14,6 +14,9 @@ private SatisfactionStatusEnum status; private Float score; private Long appointmentId; + private String customerName; + private String agentName; + public Long getId() { return id; } @@ -56,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