package com.pollex.pam.service.dto;
|
|
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 img;
|
private Float avgScore;
|
private String title;
|
private String phoneNumber;
|
private String serveArea;
|
private String companyAddress;
|
private Instant latestLoginTime;
|
private String seniority;
|
private Number evaluation;
|
private List<String> expertise;
|
private String concept;
|
private String experiences;
|
private String awards;
|
private GenderEnum gender;
|
private String communicationStyle;
|
private String email;
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getAgentNo() {
|
return agentNo;
|
}
|
|
public void setAgentNo(String agentNo) {
|
this.agentNo = agentNo;
|
}
|
|
public String getRole() {
|
return role;
|
}
|
|
public void setRole(String role) {
|
this.role = role;
|
}
|
|
public String getImg() {
|
return img;
|
}
|
|
public void setImg(String img) {
|
this.img = img;
|
}
|
|
public Float getAvgScore() {
|
return avgScore;
|
}
|
|
public void setAvgScore(Float avgScore) {
|
this.avgScore = avgScore;
|
}
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public String getPhoneNumber() {
|
return phoneNumber;
|
}
|
|
public void setPhoneNumber(String phoneNumber) {
|
this.phoneNumber = phoneNumber;
|
}
|
|
public String getServeArea() {
|
return serveArea;
|
}
|
|
public void setServeArea(String serveArea) {
|
this.serveArea = serveArea;
|
}
|
|
public String getCompanyAddress() {
|
return companyAddress;
|
}
|
|
public void setCompanyAddress(String companyAddress) {
|
this.companyAddress = companyAddress;
|
}
|
|
public Instant getLatestLoginTime() {
|
return latestLoginTime;
|
}
|
|
public void setLatestLoginTime(Instant latestLoginTime) {
|
this.latestLoginTime = latestLoginTime;
|
}
|
|
public String getSeniority() {
|
return seniority;
|
}
|
|
public void setSeniority(String seniority) {
|
this.seniority = seniority;
|
}
|
|
public Number getEvaluation() {
|
return evaluation;
|
}
|
|
public void setEvaluation(Number evaluation) {
|
this.evaluation = evaluation;
|
}
|
|
public List<String> getExpertise() {
|
return expertise;
|
}
|
|
public void setExpertise(List<String> expertise) {
|
this.expertise = expertise;
|
}
|
|
public String getConcept() {
|
return concept;
|
}
|
|
public void setConcept(String concept) {
|
this.concept = concept;
|
}
|
|
public String getExperiences() {
|
return experiences;
|
}
|
|
public void setExperiences(String experiences) {
|
this.experiences = experiences;
|
}
|
|
public String getAwards() {
|
return awards;
|
}
|
|
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;
|
}
|
|
|
|
}
|