package com.pollex.pam.service.dto;
|
|
import com.pollex.pam.enums.GenderEnum;
|
|
public class ConsultantEditDTO {
|
|
private Long id;
|
private String name;
|
private String expertise;
|
private String title;
|
private String role;
|
private String serveArea;
|
private GenderEnum gender;
|
private String phoneNumber;
|
private String companyAddress;
|
private Long seniorityYear;
|
private Long seniorityMonth;
|
private String concept;
|
private String experience;
|
private String award;
|
private String communicationStyle;
|
private String photoBase64;
|
private String photoFileName;
|
private String agentNo;
|
|
public Long getId() {
|
return id;
|
}
|
public void setId(Long id) {
|
this.id = id;
|
}
|
public String getName() {
|
return name;
|
}
|
public void setName(String name) {
|
this.name = name;
|
}
|
public String getExpertise() {
|
return expertise;
|
}
|
public void setExpertise(String expertise) {
|
this.expertise = expertise;
|
}
|
public String getTitle() {
|
return title;
|
}
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
public String getRole() {
|
return role;
|
}
|
public void setRole(String role) {
|
this.role = role;
|
}
|
public String getServeArea() {
|
return serveArea;
|
}
|
public void setServeArea(String serveArea) {
|
this.serveArea = serveArea;
|
}
|
public GenderEnum getGender() {
|
return gender;
|
}
|
public void setGender(GenderEnum gender) {
|
this.gender = gender;
|
}
|
public String getPhoneNumber() {
|
return phoneNumber;
|
}
|
public void setPhoneNumber(String phoneNumber) {
|
this.phoneNumber = phoneNumber;
|
}
|
public String getCompanyAddress() {
|
return companyAddress;
|
}
|
public void setCompanyAddress(String companyAddress) {
|
this.companyAddress = companyAddress;
|
}
|
public Long getSeniorityYear() {
|
return seniorityYear;
|
}
|
public void setSeniorityYear(Long seniorityYear) {
|
this.seniorityYear = seniorityYear;
|
}
|
public Long getSeniorityMonth() {
|
return seniorityMonth;
|
}
|
public void setSeniorityMonth(Long seniorityMonth) {
|
this.seniorityMonth = seniorityMonth;
|
}
|
public String getConcept() {
|
return concept;
|
}
|
public void setConcept(String concept) {
|
this.concept = concept;
|
}
|
public String getExperience() {
|
return experience;
|
}
|
public void setExperience(String experience) {
|
this.experience = experience;
|
}
|
public String getAward() {
|
return award;
|
}
|
public void setAward(String award) {
|
this.award = award;
|
}
|
public String getCommunicationStyle() {
|
return communicationStyle;
|
}
|
public void setCommunicationStyle(String communicationStyle) {
|
this.communicationStyle = communicationStyle;
|
}
|
public String getPhotoBase64() {
|
return photoBase64;
|
}
|
public void setPhotoBase64(String photoBase64) {
|
this.photoBase64 = photoBase64;
|
}
|
public String getPhotoFileName() {
|
return "consultant_"+this.getAgentNo()+".jpg";
|
}
|
public String getAgentNo() {
|
return agentNo;
|
}
|
public void setAgentNo(String agentNo) {
|
this.agentNo = agentNo;
|
}
|
|
|
|
|
|
|
}
|