package com.pollex.pam.service.dto;
|
|
import com.pollex.pam.enums.GenderEnum;
|
|
import java.util.List;
|
|
public class StrictQueryConsultantParam {
|
|
private GenderEnum gender;
|
private Float avgScore;
|
private String status;
|
private String area;
|
private List<String> requirements;
|
private String otherRequirement;
|
private String seniority;
|
private List<String> popularTags;
|
private String otherPopularTags;
|
|
public GenderEnum getGender() {
|
return gender;
|
}
|
|
public void setGender(GenderEnum gender) {
|
this.gender = gender;
|
}
|
|
public Float getAvgScore() {
|
return avgScore;
|
}
|
|
public void setAvgScore(Float avgScore) {
|
this.avgScore = avgScore;
|
}
|
|
public String getStatus() {
|
return status;
|
}
|
|
public void setStatus(String status) {
|
this.status = status;
|
}
|
|
public String getArea() {
|
return area;
|
}
|
|
public void setArea(String area) {
|
this.area = area;
|
}
|
|
public List<String> getRequirements() {
|
return requirements;
|
}
|
|
public void setRequirements(List<String> requirements) {
|
this.requirements = requirements;
|
}
|
|
public String getOtherRequirement() {
|
return otherRequirement;
|
}
|
|
public void setOtherRequirement(String otherRequirement) {
|
this.otherRequirement = otherRequirement;
|
}
|
|
public String getSeniority() {
|
return seniority;
|
}
|
|
public void setSeniority(String seniority) {
|
this.seniority = seniority;
|
}
|
|
public List<String> getPopularTags() {
|
return popularTags;
|
}
|
|
public void setPopularTags(List<String> popularTags) {
|
this.popularTags = popularTags;
|
}
|
|
public String getOtherPopularTags() {
|
return otherPopularTags;
|
}
|
|
public void setOtherPopularTags(String otherPopularTags) {
|
this.otherPopularTags = otherPopularTags;
|
}
|
}
|