admin
2024-10-30 010ef2a907e66efd4702443c06cdd18f8a7ffa5b
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
package com.yeshi.buwan.domain.recommend;
 
import com.yeshi.buwan.domain.VideoType;
 
//大区推荐视频缓存
public class CategoryRecommendCacheVideoNumber {
    private String id;
    private VideoType videoType;
    private int number;    
    private String createtime;
    public String getId() {
        return id;
    }
    public void setId(String id) {
        this.id = id;
    }
    public VideoType getVideoType() {
        return videoType;
    }
    public void setVideoType(VideoType videoType) {
        this.videoType = videoType;
    }
    public int getNumber() {
        return number;
    }
    public void setNumber(int number) {
        this.number = number;
    }
    public String getCreatetime() {
        return createtime;
    }
    public void setCreatetime(String createtime) {
        this.createtime = createtime;
    }
 
}