From f5831acafe510f9a79f8e2ecf6dee09026d67fc6 Mon Sep 17 00:00:00 2001 From: HelenHuang <LinHuang@pollex.com.tw> Date: 星期四, 20 一月 2022 16:09:09 +0800 Subject: [PATCH] Merge branch 'Phase3' of https://dev.pollex.com.tw:8443/r/pcalife/PAM into Phase3 --- pamapi/src/main/java/com/pollex/pam/service/dto/AppointmentDTO.java | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/pamapi/src/main/java/com/pollex/pam/service/dto/AppointmentDTO.java b/pamapi/src/main/java/com/pollex/pam/service/dto/AppointmentDTO.java index 411c500..ea18083 100644 --- a/pamapi/src/main/java/com/pollex/pam/service/dto/AppointmentDTO.java +++ b/pamapi/src/main/java/com/pollex/pam/service/dto/AppointmentDTO.java @@ -25,6 +25,7 @@ private Long customerId; private Instant consultantViewTime; private Instant consultantReadTime; + private Instant contactTime; public Long getId() { return id; @@ -129,4 +130,10 @@ public void setLastModifiedDate(Instant lastModifiedDate) { this.lastModifiedDate = lastModifiedDate; } + public Instant getContactTime() { + return contactTime; + } + public void setContactTime(Instant contactTime) { + this.contactTime = contactTime; + } } -- Gitblit v1.8.0