From 991dfe252f275431011ec55c7b47a9bc11e36d87 Mon Sep 17 00:00:00 2001 From: Jack <jack.su@pollex.com.tw> Date: 星期二, 28 十二月 2021 15:02:45 +0800 Subject: [PATCH] [UPDATE] 調整編輯顧問API的文件 [BUG] 處理修改顧問資料未更新個人背景和得獎經歷的問題 --- 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