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 = "tencentCoverVideoV2") public class TencentCoverVideo { @Id private String videoId; @Indexed private String coverId; private String title; private String subTitle; 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; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getSubTitle() { return subTitle; } public void setSubTitle(String subTitle) { this.subTitle = subTitle; } }