admin
2025-02-20 f537abe9f3646c739beaf15076246a2f71a347e9
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
package com.yeshi.buwan.dto.search;
 
import java.util.List;
 
/**
 * 短视频
 */
public class SolrShortVideoSearchFilter {
    private boolean fuzzy;
    private String key;
    private List<String> areas;
    private String tag;
    private Integer rootVideoType;
    private List<Integer> resourceIds;
    private String categoryName;
    private String sortKey;
 
    public String getKey() {
        return key;
    }
 
    public void setKey(String key) {
        this.key = key;
    }
 
 
    public List<String> getAreas() {
        return areas;
    }
 
    public void setAreas(List<String> areas) {
        this.areas = areas;
    }
 
    public String getTag() {
        return tag;
    }
 
    public void setTag(String tag) {
        this.tag = tag;
    }
 
    public Integer getRootVideoType() {
        return rootVideoType;
    }
 
    public void setRootVideoType(Integer rootVideoType) {
        this.rootVideoType = rootVideoType;
    }
 
 
    public List<Integer> getResourceIds() {
        return resourceIds;
    }
 
    public void setResourceIds(List<Integer> resourceIds) {
        this.resourceIds = resourceIds;
    }
 
    public String getCategoryName() {
        return categoryName;
    }
 
    public void setCategoryName(String categoryName) {
        this.categoryName = categoryName;
    }
 
    public String getSortKey() {
        return sortKey;
    }
 
    public void setSortKey(String sortKey) {
        this.sortKey = sortKey;
    }
 
    public boolean isFuzzy() {
        return fuzzy;
    }
 
    public void setFuzzy(boolean fuzzy) {
        this.fuzzy = fuzzy;
    }
}