package com.yeshi.buwan.dto.search;
|
|
import java.util.List;
|
|
public class SolrVideoSearchFilter {
|
|
//是否模糊
|
private boolean fuzzy;
|
|
private String key;
|
//演员
|
private String actor;
|
//导演
|
private String director;
|
|
private String area;
|
|
private List<String> areas;
|
|
private Integer contentType;
|
private Integer videoType;
|
private List<String> resourceIds;
|
private String sortKey;
|
|
private Integer freeType;
|
|
public String getDirector() {
|
return director;
|
}
|
|
public void setDirector(String director) {
|
this.director = director;
|
}
|
|
public String getActor() {
|
return actor;
|
}
|
|
public void setActor(String actor) {
|
this.actor = actor;
|
}
|
|
|
public String getSortKey() {
|
return sortKey;
|
}
|
|
public void setSortKey(String sortKey) {
|
this.sortKey = sortKey;
|
}
|
|
public String getKey() {
|
return key;
|
}
|
|
public void setKey(String key) {
|
this.key = key;
|
}
|
|
public Integer getContentType() {
|
return contentType;
|
}
|
|
public void setContentType(Integer contentType) {
|
this.contentType = contentType;
|
}
|
|
public Integer getVideoType() {
|
return videoType;
|
}
|
|
public void setVideoType(Integer videoType) {
|
this.videoType = videoType;
|
}
|
|
public List<String> getResourceIds() {
|
return resourceIds;
|
}
|
|
public void setResourceIds(List<String> resourceIds) {
|
this.resourceIds = resourceIds;
|
}
|
|
public Integer getFreeType() {
|
return freeType;
|
}
|
|
public void setFreeType(Integer freeType) {
|
this.freeType = freeType;
|
}
|
|
public String getArea() {
|
return area;
|
}
|
|
public void setArea(String area) {
|
this.area = area;
|
}
|
|
public boolean isFuzzy() {
|
return fuzzy;
|
}
|
|
public void setFuzzy(boolean fuzzy) {
|
this.fuzzy = fuzzy;
|
}
|
|
public List<String> getAreas() {
|
return areas;
|
}
|
|
public void setAreas(List<String> areas) {
|
this.areas = areas;
|
}
|
}
|