package com.yeshi.buwan.dto.search;
|
|
import java.util.List;
|
|
/**
|
* 短视频
|
*/
|
public class SolrShortVideoSearchFilter {
|
private boolean fuzzy;
|
private String key;
|
private List<String> areas;
|
private String tag;
|
private Integer rootVideoType;
|
private List<Integer> resourceIds;
|
private String categoryName;
|
private String sortKey;
|
|
public String getKey() {
|
return key;
|
}
|
|
public void setKey(String key) {
|
this.key = key;
|
}
|
|
|
public List<String> getAreas() {
|
return areas;
|
}
|
|
public void setAreas(List<String> areas) {
|
this.areas = areas;
|
}
|
|
public String getTag() {
|
return tag;
|
}
|
|
public void setTag(String tag) {
|
this.tag = tag;
|
}
|
|
public Integer getRootVideoType() {
|
return rootVideoType;
|
}
|
|
public void setRootVideoType(Integer rootVideoType) {
|
this.rootVideoType = rootVideoType;
|
}
|
|
|
public List<Integer> getResourceIds() {
|
return resourceIds;
|
}
|
|
public void setResourceIds(List<Integer> resourceIds) {
|
this.resourceIds = resourceIds;
|
}
|
|
public String getCategoryName() {
|
return categoryName;
|
}
|
|
public void setCategoryName(String categoryName) {
|
this.categoryName = categoryName;
|
}
|
|
public String getSortKey() {
|
return sortKey;
|
}
|
|
public void setSortKey(String sortKey) {
|
this.sortKey = sortKey;
|
}
|
|
public boolean isFuzzy() {
|
return fuzzy;
|
}
|
|
public void setFuzzy(boolean fuzzy) {
|
this.fuzzy = fuzzy;
|
}
|
}
|