From c20ad0344ac58d2939cf9bdc4cd7006156f3fc62 Mon Sep 17 00:00:00 2001 From: wayne <wayne8692wayne8692@gmail.com> Date: 星期四, 24 二月 2022 14:41:23 +0800 Subject: [PATCH] [add] [todo 135141] (local db需跑 02/21的sql) 新增稽核紀錄表,及15個會觸發的稽核紀錄位置 --- pamapi/src/main/java/com/pollex/pam/service/dto/SatisfactionDTO.java | 31 +++++++++++++++++++++++++++++-- 1 files changed, 29 insertions(+), 2 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..152a82d 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 @@ -3,6 +3,7 @@ import java.time.Instant; import com.pollex.pam.enums.SatisfactionStatusEnum; +import com.pollex.pam.enums.SatisfactionTypeEnum; public class SatisfactionDTO { @@ -14,6 +15,10 @@ private SatisfactionStatusEnum status; private Float score; private Long appointmentId; + private String customerName; + private String agentName; + private SatisfactionTypeEnum type; + public Long getId() { return id; } @@ -56,6 +61,28 @@ 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; + } + public SatisfactionTypeEnum getType() { + return type; + } + public void setType(SatisfactionTypeEnum type) { + this.type = type; + } } -- Gitblit v1.8.0