admin
2020-08-22 813d2cae75cbae3f216de5f493af643c5a560c82
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
package com.yeshi.buwan.domain.recommend;
 
import com.google.gson.annotations.Expose;
import com.yeshi.buwan.domain.VideoInfo;
import com.yeshi.buwan.domain.VideoType;
 
//大区推荐视频缓存
public class CategoryRecommendCacheVideo {
    private String id;
    @Expose
    private VideoInfo videoInfo;
    private String createtime;
    private int orderby;
    private VideoType videoType;
 
    private int rank; //全区榜首后台指定的位置,并且不擅除
    
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
    
    public int getRank() {
        return rank;
    }
 
    public void setRank(int rank) {
        this.rank = rank;
    }
 
    public VideoInfo getVideoInfo() {
        return videoInfo;
    }
 
    public void setVideoInfo(VideoInfo videoInfo) {
        this.videoInfo = videoInfo;
    }
 
    public String getCreatetime() {
        return createtime;
    }
 
    public void setCreatetime(String createtime) {
        this.createtime = createtime;
    }
 
    public int getOrderby() {
        return orderby;
    }
 
    public void setOrderby(int orderby) {
        this.orderby = orderby;
    }
 
    public VideoType getVideoType() {
        return videoType;
    }
 
    public void setVideoType(VideoType videoType) {
        this.videoType = videoType;
    }
 
}