| | |
| | | @Column(name = "recommend") |
| | | private Boolean recommend; |
| | | |
| | | @Column(name = "communication_style") |
| | | private String communicationStyle; |
| | | |
| | | public Long getId() { |
| | | return id; |
| | | } |
| | |
| | | this.recommend = recommend; |
| | | } |
| | | |
| | | public String getCommunicationStyle() { |
| | | return communicationStyle; |
| | | } |
| | | |
| | | public void setCommunicationStyle(String communicationStyle) { |
| | | this.communicationStyle = communicationStyle; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return "Consultant{" + |
| | |
| | | ", title='" + title + '\'' + |
| | | ", role='" + role + '\'' + |
| | | ", serveArea='" + serveArea + '\'' + |
| | | ", gender='" + gender + '\'' + |
| | | ", gender=" + gender + |
| | | ", phoneNumber='" + phoneNumber + '\'' + |
| | | ", companyAddress='" + companyAddress + '\'' + |
| | | ", latestLoginTime=" + latestLoginTime + |
| | |
| | | ", experience='" + experience + '\'' + |
| | | ", award='" + award + '\'' + |
| | | ", recommend=" + recommend + |
| | | ", communicationStyle='" + communicationStyle + '\'' + |
| | | '}'; |
| | | } |
| | | } |