admin
2023-04-12 f06a592dd1a7e995bf313ccb5efe7dff73ccfc4e
src/main/java/com/yeshi/buwan/dto/search/SolrVideoSearchFilter.java
@@ -1,5 +1,7 @@
package com.yeshi.buwan.dto.search;
import java.util.List;
public class SolrVideoSearchFilter {
    //是否模糊
@@ -13,9 +15,11 @@
    private String area;
    private List<String> areas;
    private Integer contentType;
    private Integer videoType;
    private String[] resourceIds;
    private List<String> resourceIds;
    private String sortKey;
    private Integer freeType;
@@ -69,11 +73,11 @@
        this.videoType = videoType;
    }
    public String[] getResourceIds() {
    public List<String> getResourceIds() {
        return resourceIds;
    }
    public void setResourceIds(String[] resourceIds) {
    public void setResourceIds(List<String> resourceIds) {
        this.resourceIds = resourceIds;
    }
@@ -100,4 +104,12 @@
    public void setFuzzy(boolean fuzzy) {
        this.fuzzy = fuzzy;
    }
    public List<String> getAreas() {
        return areas;
    }
    public void setAreas(List<String> areas) {
        this.areas = areas;
    }
}