admin
2021-09-03 b41a6efe17ba61d150c5a9b7309651cebae54e0d
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 {
    //是否模糊
@@ -15,7 +17,7 @@
    private Integer contentType;
    private Integer videoType;
    private String[] resourceIds;
    private List<String> resourceIds;
    private String sortKey;
    private Integer freeType;
@@ -69,11 +71,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;
    }