保誠-保戶業務員媒合平台
wayne
2021-11-16 15352a866982e87be1a5094e86d479ab9f62ddcc
pamapi/src/main/java/com/pollex/pam/domain/Consultant.java
@@ -69,6 +69,9 @@
    @Column(name = "recommend")
    private Boolean recommend;
    @Column(name = "communication_style")
    private String communicationStyle;
    public Long getId() {
        return id;
    }
@@ -213,6 +216,14 @@
        this.recommend = recommend;
    }
    public String getCommunicationStyle() {
        return communicationStyle;
    }
    public void setCommunicationStyle(String communicationStyle) {
        this.communicationStyle = communicationStyle;
    }
    @Override
    public String toString() {
        return "Consultant{" +
@@ -225,7 +236,7 @@
            ", title='" + title + '\'' +
            ", role='" + role + '\'' +
            ", serveArea='" + serveArea + '\'' +
            ", gender='" + gender + '\'' +
            ", gender=" + gender +
            ", phoneNumber='" + phoneNumber + '\'' +
            ", companyAddress='" + companyAddress + '\'' +
            ", latestLoginTime=" + latestLoginTime +
@@ -234,6 +245,7 @@
            ", experience='" + experience + '\'' +
            ", award='" + award + '\'' +
            ", recommend=" + recommend +
            ", communicationStyle='" + communicationStyle + '\'' +
            '}';
    }
}