admin
2021-02-19 58577bae968f2a10232bc8b3c04910b93ea3c69a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package com.yeshi.buwan.dto.search;
 
public class SolrVideoSearchFilter {
    private String key;
    private Integer contentType;
    private Integer videoType;
    private String[] resourceIds;
    private String sortKey;
 
    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;
    }
}