admin
2021-09-24 f788607ff771a47bc60d6a86e00b3433c40f3d2c
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
package com.yeshi.buwan.domain.solr;
 
import org.apache.solr.client.solrj.beans.Field;
import org.springframework.data.solr.core.mapping.Indexed;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * 搜索引擎中保存的一般视频对象
 */
public class SolrCommonVideo implements Serializable {
    @Field
    private String id;
    @Field
    private String mainactor;
    @Field
    private int show;
    @Field
    private String name;
    @Field
    private String tag;
    @Field
    private String duration;
    @Field
    private String score;
    @Field
    private String vpicture;
    @Field("latest_vpicture")
    private String latestVpicture;
    @Field
    private String hpicture;
    @Field("latest_hpicture")
    private String latestHpicture;
    @Field
    private String area;
    @Field
    private String createtime;
    @Field
    private int watchcount;
    @Field
    private String director;
    @Field
    private String picture;
    @Field
    private int contenttype;
    @Field("solr_time")
    private Date solrTime;
    @Field
    private int commentcount;
    @Field
    private int videocount;
 
    @Field
    private String updatetime;
    @Field
    private long updateTime;
    @Indexed
    @Field("root_video_type")
    private long rootVideoType;//视频主分类
    @Indexed
    @Field("video_types")
    private String videoTypes;
 
    @Field
    private String year;
    @Field
    @Indexed
    private String resourceIds;//视频资源ID列表
 
 
    public long getUpdateTime() {
        return updateTime;
    }
 
    public void setUpdateTime(long updateTime) {
        this.updateTime = updateTime;
    }
 
    public String getResourceIds() {
        return resourceIds;
    }
 
    public void setResourceIds(String resourceIds) {
        this.resourceIds = resourceIds;
    }
 
    public String getYear() {
        return year;
    }
 
    public void setYear(String year) {
        this.year = year;
    }
 
    public long getRootVideoType() {
        return rootVideoType;
    }
 
    public void setRootVideoType(long rootVideoType) {
        this.rootVideoType = rootVideoType;
    }
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public String getMainactor() {
        return mainactor;
    }
 
    public void setMainactor(String mainactor) {
        this.mainactor = mainactor;
    }
 
    public int getShow() {
        return show;
    }
 
    public void setShow(int show) {
        this.show = show;
    }
 
    public String getLatestHpicture() {
        return latestHpicture;
    }
 
    public void setLatestHpicture(String latestHpicture) {
        this.latestHpicture = latestHpicture;
    }
 
    public String getDuration() {
        return duration;
    }
 
    public void setDuration(String duration) {
        this.duration = duration;
    }
 
    public String getScore() {
        return score;
    }
 
    public void setScore(String score) {
        this.score = score;
    }
 
    public String getVpicture() {
        return vpicture;
    }
 
    public void setVpicture(String vpicture) {
        this.vpicture = vpicture;
    }
 
    public String getLatestVpicture() {
        return latestVpicture;
    }
 
    public void setLatestVpicture(String latestVpicture) {
        this.latestVpicture = latestVpicture;
    }
 
    public String getTag() {
        return tag;
    }
 
    public void setTag(String tag) {
        this.tag = tag;
    }
 
    public String getHpicture() {
        return hpicture;
    }
 
    public void setHpicture(String hpicture) {
        this.hpicture = hpicture;
    }
 
    public String getArea() {
        return area;
    }
 
    public void setArea(String area) {
        this.area = area;
    }
 
    public String getCreatetime() {
        return createtime;
    }
 
    public void setCreatetime(String createtime) {
        this.createtime = createtime;
    }
 
    public int getWatchcount() {
        return watchcount;
    }
 
    public void setWatchcount(int watchcount) {
        this.watchcount = watchcount;
    }
 
    public String getDirector() {
        return director;
    }
 
    public void setDirector(String director) {
        this.director = director;
    }
 
    public String getPicture() {
        return picture;
    }
 
    public void setPicture(String picture) {
        this.picture = picture;
    }
 
    public int getContenttype() {
        return contenttype;
    }
 
    public void setContenttype(int contenttype) {
        this.contenttype = contenttype;
    }
 
    public Date getSolrTime() {
        return solrTime;
    }
 
    public void setSolrTime(Date solrTime) {
        this.solrTime = solrTime;
    }
 
    public int getCommentcount() {
        return commentcount;
    }
 
    public void setCommentcount(int commentcount) {
        this.commentcount = commentcount;
    }
 
    public int getVideocount() {
        return videocount;
    }
 
    public void setVideocount(int videocount) {
        this.videocount = videocount;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getUpdatetime() {
        return updatetime;
    }
 
    public void setUpdatetime(String updatetime) {
        this.updatetime = updatetime;
    }
 
 
    public String getVideoTypes() {
        return videoTypes;
    }
 
    public void setVideoTypes(String videoTypes) {
        this.videoTypes = videoTypes;
    }
}