package com.yeshi.buwan.dto.search;
|
|
public class SolrVideoSearchFilter {
|
private String key;
|
private Integer contentType;
|
private Integer videoType;
|
private String[] resourceIds;
|
private String sortKey;
|
|
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 String[] getResourceIds() {
|
return resourceIds;
|
}
|
|
public void setResourceIds(String[] resourceIds) {
|
this.resourceIds = resourceIds;
|
}
|
}
|