From 59cba8e75716def66ca996c3162e7e6792048444 Mon Sep 17 00:00:00 2001 From: HelenHuang <LinHuang@pollex.com.tw> Date: 星期二, 15 二月 2022 09:39:45 +0800 Subject: [PATCH] Fixed#135358 修正[ 顧問管理流程 ] 結案明細 : 編輯結案明細,由成交編輯為未成交,內容依然顯示成交的 ID 和 商品 Plan Code、進件時間 --- pamapi/src/main/java/com/pollex/pam/domain/Customer.java | 13 +++++++++++++ 1 files changed, 13 insertions(+), 0 deletions(-) diff --git a/pamapi/src/main/java/com/pollex/pam/domain/Customer.java b/pamapi/src/main/java/com/pollex/pam/domain/Customer.java index 9a94a8c..c3055cc 100644 --- a/pamapi/src/main/java/com/pollex/pam/domain/Customer.java +++ b/pamapi/src/main/java/com/pollex/pam/domain/Customer.java @@ -51,6 +51,11 @@ @JsonIgnore private Instant lastModifiedDate = Instant.now(); + @CreatedDate + @Column(name = "agree_personal_information_time", updatable = false) + @JsonIgnore + private Instant agreePersonalInformationTime; + public Long getId() { return id; } @@ -107,6 +112,14 @@ this.contactType = contactType; } + public Instant getAgreePersonalInformationTime() { + return agreePersonalInformationTime; + } + + public void setAgreePersonalInformationTime(Instant agreePersonalInformationTime) { + this.agreePersonalInformationTime = agreePersonalInformationTime; + } + public String toAccountString() { return Optional.ofNullable(getPhone()) .filter(StringUtils::hasText) -- Gitblit v1.8.0