admin
2021-08-27 8fee151ffae0c3818694b7318583814bf92663e2
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
package com.yeshi.buwan.videos.tencent.entity;
 
import org.springframework.data.annotation.Id;
import org.springframework.data.mongodb.core.index.Indexed;
import org.springframework.data.mongodb.core.mapping.Document;
 
import java.util.Date;
 
@Document(collection = "tencentCoverVideo")
public class TencentCoverVideo {
    @Id
    private String videoId;
    @Indexed
    private String coverId;
    private Integer stage;//集数
    private Integer position;//position
    private String date;//date 时间
    private String link;
    private Date createTime;
    private Date updateTime;
 
    public String getVideoId() {
        return videoId;
    }
 
    public void setVideoId(String videoId) {
        this.videoId = videoId;
    }
 
    public String getCoverId() {
        return coverId;
    }
 
    public void setCoverId(String coverId) {
        this.coverId = coverId;
    }
 
    public Integer getStage() {
        return stage;
    }
 
    public void setStage(Integer stage) {
        this.stage = stage;
    }
 
    public Integer getPosition() {
        return position;
    }
 
    public void setPosition(Integer position) {
        this.position = position;
    }
 
    public String getDate() {
        return date;
    }
 
    public void setDate(String date) {
        this.date = date;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public Date getUpdateTime() {
        return updateTime;
    }
 
    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }
 
    public String getLink() {
        return link;
    }
 
    public void setLink(String link) {
        this.link = link;
    }
}