admin
2022-04-16 04f09e52ffd4681bdfd85e51acd3da0d1280c3d3
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
package com.yeshi.buwan.dto.search;
 
import java.util.List;
 
public class SolrVideoSearchFilter {
 
    //是否模糊
    private boolean fuzzy;
 
    private String key;
    //演员
    private String actor;
    //导演
    private String director;
 
    private String area;
 
    private List<String> areas;
 
    private Integer contentType;
    private Integer videoType;
    private List<String> resourceIds;
    private String sortKey;
 
    private Integer freeType;
 
    public String getDirector() {
        return director;
    }
 
    public void setDirector(String director) {
        this.director = director;
    }
 
    public String getActor() {
        return actor;
    }
 
    public void setActor(String actor) {
        this.actor = actor;
    }
 
 
    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 List<String> getResourceIds() {
        return resourceIds;
    }
 
    public void setResourceIds(List<String> resourceIds) {
        this.resourceIds = resourceIds;
    }
 
    public Integer getFreeType() {
        return freeType;
    }
 
    public void setFreeType(Integer freeType) {
        this.freeType = freeType;
    }
 
    public String getArea() {
        return area;
    }
 
    public void setArea(String area) {
        this.area = area;
    }
 
    public boolean isFuzzy() {
        return fuzzy;
    }
 
    public void setFuzzy(boolean fuzzy) {
        this.fuzzy = fuzzy;
    }
 
    public List<String> getAreas() {
        return areas;
    }
 
    public void setAreas(List<String> areas) {
        this.areas = areas;
    }
}