package com.yeshi.buwan.dto.search;
|
|
/**
|
* 短视频
|
*/
|
public class SolrShortVideoSearchFilter {
|
private boolean fuzzy;
|
private String key;
|
private String area;
|
private String tag;
|
private Integer rootVideoType;
|
private Integer resourceId;
|
private String categoryName;
|
private String sortKey;
|
|
public String getKey() {
|
return key;
|
}
|
|
public void setKey(String key) {
|
this.key = key;
|
}
|
|
public String getArea() {
|
return area;
|
}
|
|
public void setArea(String area) {
|
this.area = area;
|
}
|
|
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 Integer getResourceId() {
|
return resourceId;
|
}
|
|
public void setResourceId(Integer resourceId) {
|
this.resourceId = resourceId;
|
}
|
|
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;
|
}
|
}
|