From c2a3da1d4071f2f1d6a5beb63b8442920767584e Mon Sep 17 00:00:00 2001 From: Jack <jack.su@pollex.com.tw> Date: 星期二, 18 一月 2022 20:33:52 +0800 Subject: [PATCH] [ADD] 結案明細編輯API --- pamapi/src/main/java/com/pollex/pam/domain/Consultant.java | 18 +++++++++++++++--- 1 files changed, 15 insertions(+), 3 deletions(-) diff --git a/pamapi/src/main/java/com/pollex/pam/domain/Consultant.java b/pamapi/src/main/java/com/pollex/pam/domain/Consultant.java index 60fcbf9..942a2e7 100644 --- a/pamapi/src/main/java/com/pollex/pam/domain/Consultant.java +++ b/pamapi/src/main/java/com/pollex/pam/domain/Consultant.java @@ -71,6 +71,9 @@ @Column(name = "communication_style") private String communicationStyle; + @Column(name = "email") + private String email; + public Long getId() { return id; } @@ -164,7 +167,7 @@ } public void setCompanyAddress(String companyAddress) { - companyAddress = companyAddress; + this.companyAddress = companyAddress; } public Long getSeniorityYear() { @@ -230,6 +233,14 @@ this.communicationStyle = communicationStyle; } + public String getEmail() { + return email; + } + + public void setEmail(String email) { + this.email = email; + } + @Override public String toString() { return "Consultant{" + @@ -245,13 +256,14 @@ ", gender=" + gender + ", phoneNumber='" + phoneNumber + '\'' + ", companyAddress='" + companyAddress + '\'' + - ", seniorityYear='" + seniorityYear + '\'' + - ", seniorityMonth='" + seniorityMonth + '\'' + + ", seniorityYear=" + seniorityYear + + ", seniorityMonth=" + seniorityMonth + ", concept='" + concept + '\'' + ", experience='" + experience + '\'' + ", award='" + award + '\'' + ", recommend=" + recommend + ", communicationStyle='" + communicationStyle + '\'' + + ", email='" + email + '\'' + '}'; } } -- Gitblit v1.8.0