From a3716f72066d25d745f4d5103ff23a553c3e102b Mon Sep 17 00:00:00 2001 From: wayne <wayne8692wayne8692@gmail.com> Date: 星期四, 17 二月 2022 11:41:19 +0800 Subject: [PATCH] Merge branch 'sit' into uat --- 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