admin
2021-07-30 a66b556036c2b3936a51fd7b7e54a204eb31dc14
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
package com.yeshi.buwan.dto.search;
 
/**
 * 短视频
 */
public class SolrShortVideoSearchFilter {
    private boolean fuzzy;
    private String key;
    private String area;
    private String tag;
    private Integer rootVideoType;
    private Integer resourceId;
    private String categoryName;
    private String sortKey;
 
    public String getKey() {
        return key;
    }
 
    public void setKey(String key) {
        this.key = key;
    }
 
    public String getArea() {
        return area;
    }
 
    public void setArea(String area) {
        this.area = area;
    }
 
    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 Integer getResourceId() {
        return resourceId;
    }
 
    public void setResourceId(Integer resourceId) {
        this.resourceId = resourceId;
    }
 
    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;
    }
}