From fa782dca2a00e9a4a48c5b3588f5eb3b47af93cf Mon Sep 17 00:00:00 2001 From: wayne <wayne8692wayne8692@gmail.com> Date: 星期二, 01 三月 2022 15:41:05 +0800 Subject: [PATCH] [update] [todo 136031] 諮詢度表現,提供前端該顧問所有預約單數量以及近一個月的預約單數量 --- pamapi/src/main/java/com/pollex/pam/service/dto/SatisfactionDTO.java | 12 +++++++++--- 1 files changed, 9 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 5a6c4ae..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 { @@ -16,7 +17,8 @@ private Long appointmentId; private String customerName; private String agentName; - + private SatisfactionTypeEnum type; + public Long getId() { return id; } @@ -77,6 +79,10 @@ 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