| | |
| | | private String phone; |
| | | private Integer gender; |
| | | private String description; |
| | | private String title; |
| | | private String company; |
| | | private String introduction; |
| | | private String avatarUrl; |
| | | private List<TagResponse> specialties; |
| | | private List<TagResponse> tags; |
| | | |
| | | public Long getId() { |
| | | return id; |
| | |
| | | this.specialties = specialties; |
| | | } |
| | | |
| | | public String getTitle() { |
| | | return title; |
| | | } |
| | | |
| | | public void setTitle(String title) { |
| | | this.title = title; |
| | | } |
| | | |
| | | public String getCompany() { |
| | | return company; |
| | | } |
| | | |
| | | public void setCompany(String company) { |
| | | this.company = company; |
| | | } |
| | | |
| | | public String getIntroduction() { |
| | | return introduction; |
| | | } |
| | | |
| | | public void setIntroduction(String introduction) { |
| | | this.introduction = introduction; |
| | | } |
| | | |
| | | public List<TagResponse> getTags() { |
| | | return tags; |
| | | } |
| | | |
| | | public void setTags(List<TagResponse> tags) { |
| | | this.tags = tags; |
| | | } |
| | | |
| | | public static class TagResponse { |
| | | private Long id; |
| | | private String name; |