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