From 82e2a62e7c90cc191f9e2ebc569fe3a3663b68b0 Mon Sep 17 00:00:00 2001 From: wayne <wayne8692wayne8692@gmail.com> Date: 星期五, 03 十二月 2021 11:19:00 +0800 Subject: [PATCH] Merge branch '預約單更新與刪除' --- pamapi/src/main/java/com/pollex/pam/service/dto/AppointmentCustomerViewDTO.java | 13 ++++++++----- 1 files changed, 8 insertions(+), 5 deletions(-) diff --git a/pamapi/src/main/java/com/pollex/pam/service/dto/AppointmentCustomerViewDTO.java b/pamapi/src/main/java/com/pollex/pam/service/dto/AppointmentCustomerViewDTO.java index 45368df..22e764f 100644 --- a/pamapi/src/main/java/com/pollex/pam/service/dto/AppointmentCustomerViewDTO.java +++ b/pamapi/src/main/java/com/pollex/pam/service/dto/AppointmentCustomerViewDTO.java @@ -2,10 +2,6 @@ import java.time.Instant; -import javax.persistence.Column; -import javax.persistence.EnumType; -import javax.persistence.Enumerated; - import com.pollex.pam.enums.ContactStatusEnum; public class AppointmentCustomerViewDTO { @@ -22,6 +18,7 @@ private String hopeContactTime; private String otherRequirement; private Instant appointmentDate; + private Instant lastModifiedDate; private String agentNo; private Long customerId; private String name; @@ -99,7 +96,13 @@ public void setAppointmentDate(Instant appointmentDate) { this.appointmentDate = appointmentDate; } - public String getAgentNo() { + public Instant getLastModifiedDate() { + return lastModifiedDate; + } + public void setLastModifiedDate(Instant lastModifiedDate) { + this.lastModifiedDate = lastModifiedDate; + } + public String getAgentNo() { return agentNo; } public void setAgentNo(String agentNo) { -- Gitblit v1.8.0