保誠-保戶業務員媒合平台
wayne
2021-11-19 d853ba65ecc95b7785a60d667e8748ff69cc129c
pamapi/src/main/java/com/pollex/pam/domain/Consultant.java
@@ -17,7 +17,7 @@
    @SequenceGenerator(name = "sequenceGenerator")
    private Long id;
    @Column(name = "agent_no")
    @Column(name = "agent_no", unique = true)
    private String agentNo;
    @Column(name = "name")
@@ -68,6 +68,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 + '\'' +
            '}';
    }
}