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;
|
|
public class ConsultantDetailDTO {
|
|
private String name;
|
private String agentNo;
|
private String role;
|
private String image;
|
private Float avgScore;
|
private String title;
|
private String phoneNumber;
|
private String serveArea;
|
private String companyAddress;
|
private Instant latestLoginTime;
|
private String seniority;
|
private Number suitability;
|
private Number evaluation;
|
private List<String> expertises;
|
private String concept;
|
private List<String> experiences;
|
private String awards;
|
|
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 getImage() {
|
return image;
|
}
|
|
public void setImage(String image) {
|
this.image = image;
|
}
|
|
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 getSuitability() {
|
return suitability;
|
}
|
|
public void setSuitability(Number suitability) {
|
this.suitability = suitability;
|
}
|
|
public Number getEvaluation() {
|
return evaluation;
|
}
|
|
public void setEvaluation(Number evaluation) {
|
this.evaluation = evaluation;
|
}
|
|
public List<String> getExpertises() {
|
return expertises;
|
}
|
|
public void setExpertises(List<String> expertises) {
|
this.expertises = expertises;
|
}
|
|
public String getConcept() {
|
return concept;
|
}
|
|
public void setConcept(String concept) {
|
this.concept = concept;
|
}
|
|
public List<String> getExperiences() {
|
return experiences;
|
}
|
|
public void setExperiences(List<String> experiences) {
|
this.experiences = experiences;
|
}
|
|
public String getAwards() {
|
return awards;
|
}
|
|
public void setAwards(String awards) {
|
this.awards = awards;
|
}
|
}
|