| | |
| | | package com.pollex.pam.service.dto; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonIgnore; |
| | | import com.fasterxml.jackson.annotation.JsonIgnoreProperties; |
| | | import com.fasterxml.jackson.annotation.JsonProperty; |
| | | |
| | | import java.time.Instant; |
| | | import java.util.List; |
| | | |
| | | import com.pollex.pam.enums.GenderEnum; |
| | | |
| | | public class ConsultantDetailDTO { |
| | | |
| | | private String name; |
| | | private String agentNo; |
| | | private String role; |
| | | private String image; |
| | | private String img; |
| | | private Float avgScore; |
| | | private String title; |
| | | private String phoneNumber; |
| | |
| | | private String seniority; |
| | | private Number suitability; |
| | | private Number evaluation; |
| | | private List<String> expertises; |
| | | private List<String> expertise; |
| | | private String concept; |
| | | private List<String> experiences; |
| | | private String experiences; |
| | | private String awards; |
| | | private GenderEnum gender; |
| | | private String communicationStyle; |
| | | private String email; |
| | | |
| | | public String getName() { |
| | | return name; |
| | |
| | | this.role = role; |
| | | } |
| | | |
| | | public String getImage() { |
| | | return image; |
| | | public String getImg() { |
| | | return img; |
| | | } |
| | | |
| | | public void setImage(String image) { |
| | | this.image = image; |
| | | public void setImg(String img) { |
| | | this.img = img; |
| | | } |
| | | |
| | | public Float getAvgScore() { |
| | |
| | | this.evaluation = evaluation; |
| | | } |
| | | |
| | | public List<String> getExpertises() { |
| | | return expertises; |
| | | public List<String> getExpertise() { |
| | | return expertise; |
| | | } |
| | | |
| | | public void setExpertises(List<String> expertises) { |
| | | this.expertises = expertises; |
| | | public void setExpertise(List<String> expertise) { |
| | | this.expertise = expertise; |
| | | } |
| | | |
| | | public String getConcept() { |
| | |
| | | this.concept = concept; |
| | | } |
| | | |
| | | public List<String> getExperiences() { |
| | | public String getExperiences() { |
| | | return experiences; |
| | | } |
| | | |
| | | public void setExperiences(List<String> experiences) { |
| | | public void setExperiences(String experiences) { |
| | | this.experiences = experiences; |
| | | } |
| | | |
| | |
| | | public void setAwards(String awards) { |
| | | this.awards = awards; |
| | | } |
| | | |
| | | public GenderEnum getGender() { |
| | | return gender; |
| | | } |
| | | |
| | | public void setGender(GenderEnum gender) { |
| | | this.gender = gender; |
| | | } |
| | | |
| | | public String getCommunicationStyle() { |
| | | return communicationStyle; |
| | | } |
| | | |
| | | public void setCommunicationStyle(String communicationStyle) { |
| | | this.communicationStyle = communicationStyle; |
| | | } |
| | | |
| | | public String getEmail() { |
| | | return email; |
| | | } |
| | | |
| | | public void setEmail(String email) { |
| | | this.email = email; |
| | | } |
| | | |
| | | |
| | | |
| | | } |