From 14cce37a73c17683517414687bf76be18b7ee819 Mon Sep 17 00:00:00 2001 From: wayne <wayne8692wayne8692@gmail.com> Date: 星期四, 24 二月 2022 12:25:16 +0800 Subject: [PATCH] [update] 若加入顧問清單時未帶入createdTime,則帶入目前時間 --- pamapi/src/main/java/com/pollex/pam/service/dto/SatisfactionCustomerScoreDTO.java | 15 +++++++++++---- 1 files changed, 11 insertions(+), 4 deletions(-) diff --git a/pamapi/src/main/java/com/pollex/pam/service/dto/SatisfactionCustomerScoreDTO.java b/pamapi/src/main/java/com/pollex/pam/service/dto/SatisfactionCustomerScoreDTO.java index ea43bdb..1cbf0e3 100644 --- a/pamapi/src/main/java/com/pollex/pam/service/dto/SatisfactionCustomerScoreDTO.java +++ b/pamapi/src/main/java/com/pollex/pam/service/dto/SatisfactionCustomerScoreDTO.java @@ -1,10 +1,13 @@ package com.pollex.pam.service.dto; +import com.pollex.pam.enums.SatisfactionTypeEnum; + public class SatisfactionCustomerScoreDTO { - + private Long appointmentId; private Float score; - + private SatisfactionTypeEnum type; + public Long getAppointmentId() { return appointmentId; } @@ -17,6 +20,10 @@ public void setScore(Float score) { this.score = score; } - - + public SatisfactionTypeEnum getType() { + return type; + } + public void setType(SatisfactionTypeEnum type) { + this.type = type; + } } -- Gitblit v1.8.0