From 3e1d9a15ec902447f566e7b0dea9d0503230288c Mon Sep 17 00:00:00 2001 From: wayne <wayne8692wayne8692@gmail.com> Date: 星期三, 01 十二月 2021 16:48:42 +0800 Subject: [PATCH] [ADD]【todo 131457, 131458】預約單瀏覽與查看時間紀錄API --- pamapi/src/main/java/com/pollex/pam/service/dto/AppointmentDTO.java | 21 ++++++++++++++++----- 1 files changed, 16 insertions(+), 5 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 55cd46a..557037d 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 @@ -8,7 +8,7 @@ @Service public class AppointmentDTO { - + private Long id; private String phone; private String email; @@ -23,7 +23,9 @@ private Instant appointmentDate; private String agentNo; private Long customerId; - + private Instant consultantViewTime; + private Instant consultantReadTime; + public Long getId() { return id; } @@ -108,7 +110,16 @@ public void setCustomerId(Long customerId) { this.customerId = customerId; } - - - + public Instant getConsultantViewTime() { + return consultantViewTime; + } + public void setConsultantViewTime(Instant consultantViewTime) { + this.consultantViewTime = consultantViewTime; + } + public Instant getConsultantReadTime() { + return consultantReadTime; + } + public void setConsultantReadTime(Instant consultantReadTime) { + this.consultantReadTime = consultantReadTime; + } } -- Gitblit v1.8.0