package com.pollex.pam.service.dto;
|
|
import com.pollex.pam.enums.GenderEnum;
|
|
public class FastQueryConsultantParam {
|
private GenderEnum gender;
|
private String communicationStyle;
|
private Number avgScore;
|
private String status;
|
|
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 Number getAvgScore() {
|
return avgScore;
|
}
|
|
public void setAvgScore(Number avgScore) {
|
this.avgScore = avgScore;
|
}
|
|
public String getStatus() {
|
return status;
|
}
|
|
public void setStatus(String status) {
|
this.status = status;
|
}
|
}
|