admin
2021-01-23 0a18a8cb0a7a57bf1f82df425251334c57f8c39a
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
package com.yeshi.buwan.pptv.entity;
 
import org.springframework.data.annotation.Id;
import org.springframework.data.mongodb.core.mapping.Document;
 
import java.util.Date;
 
@Document(collection = "videoPPTVMap")
public class VideoPPTVMap {
 
    @Id
    private Long videoId;
    private String infoId;
    private Date createTime;
 
    public Long getVideoId() {
        return videoId;
    }
 
    public void setVideoId(Long videoId) {
        this.videoId = videoId;
    }
 
    public String getInfoId() {
        return infoId;
    }
 
    public void setInfoId(String infoId) {
        this.infoId = infoId;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
}