admin
2022-01-28 cd7767932dddeaf6d9c73a83d4a9b38f0341b77f
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;
    }