admin
2021-09-24 f788607ff771a47bc60d6a86e00b3433c40f3d2c
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;
    }