package com.yeshi.buwan.videos.bilibili.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 = "bilibiliEpInfo")
|
public class BilibiliEpInfo {
|
|
|
/**
|
* aid : 4569587
|
* badge :
|
* badge_type : 0
|
* bvid : BV1us411B7nn
|
* cid : 7411432
|
* cover : http://i0.hdslb.com/bfs/archive/32d03b24c0f13d38daef65f6a5cf2bae707281a8.jpg
|
* id : 87571
|
* link : https://www.bilibili.com/bangumi/play/ep87571
|
* long_title : 兄弟
|
* pub_time : 1462503060
|
* pv : 0
|
* release_date :
|
* share_copy : 《镇魂街 第一季》第2话 兄弟
|
* share_url : https://www.bilibili.com/bangumi/play/ep87571
|
* short_link : https://b23.tv/ep87571
|
* status : 2
|
* subtitle : 已观看4.6亿次
|
* title : 2
|
* vid : vupload_7411432
|
*/
|
|
@Id
|
private Long id;
|
private Long aid;
|
@Indexed
|
private Long mediaId;
|
private String badge;
|
private Integer badge_type;
|
private String bvid;
|
private Long cid;
|
private String cover;
|
|
private String link;
|
private String long_title;
|
@Indexed
|
private Long pub_time;
|
private Integer pv;
|
private String release_date;
|
private String share_copy;
|
private String share_url;
|
private String short_link;
|
private Integer status;
|
private String subtitle;
|
private String title;
|
private String vid;
|
private Date createTime;
|
private Date updateTime;
|
|
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 Long getMediaId() {
|
return mediaId;
|
}
|
|
public void setMediaId(Long mediaId) {
|
this.mediaId = mediaId;
|
}
|
|
public Long getAid() {
|
return aid;
|
}
|
|
public void setAid(Long aid) {
|
this.aid = aid;
|
}
|
|
public String getBadge() {
|
return badge;
|
}
|
|
public void setBadge(String badge) {
|
this.badge = badge;
|
}
|
|
public Integer getBadge_type() {
|
return badge_type;
|
}
|
|
public void setBadge_type(Integer badge_type) {
|
this.badge_type = badge_type;
|
}
|
|
public String getBvid() {
|
return bvid;
|
}
|
|
public void setBvid(String bvid) {
|
this.bvid = bvid;
|
}
|
|
public Long getCid() {
|
return cid;
|
}
|
|
public void setCid(Long cid) {
|
this.cid = cid;
|
}
|
|
public String getCover() {
|
return cover;
|
}
|
|
public void setCover(String cover) {
|
this.cover = cover;
|
}
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getLink() {
|
return link;
|
}
|
|
public void setLink(String link) {
|
this.link = link;
|
}
|
|
public String getLong_title() {
|
return long_title;
|
}
|
|
public void setLong_title(String long_title) {
|
this.long_title = long_title;
|
}
|
|
public Long getPub_time() {
|
return pub_time;
|
}
|
|
public void setPub_time(Long pub_time) {
|
this.pub_time = pub_time;
|
}
|
|
public Integer getPv() {
|
return pv;
|
}
|
|
public void setPv(Integer pv) {
|
this.pv = pv;
|
}
|
|
public String getRelease_date() {
|
return release_date;
|
}
|
|
public void setRelease_date(String release_date) {
|
this.release_date = release_date;
|
}
|
|
public String getShare_copy() {
|
return share_copy;
|
}
|
|
public void setShare_copy(String share_copy) {
|
this.share_copy = share_copy;
|
}
|
|
public String getShare_url() {
|
return share_url;
|
}
|
|
public void setShare_url(String share_url) {
|
this.share_url = share_url;
|
}
|
|
public String getShort_link() {
|
return short_link;
|
}
|
|
public void setShort_link(String short_link) {
|
this.short_link = short_link;
|
}
|
|
public Integer getStatus() {
|
return status;
|
}
|
|
public void setStatus(Integer status) {
|
this.status = status;
|
}
|
|
public String getSubtitle() {
|
return subtitle;
|
}
|
|
public void setSubtitle(String subtitle) {
|
this.subtitle = subtitle;
|
}
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public String getVid() {
|
return vid;
|
}
|
|
public void setVid(String vid) {
|
this.vid = vid;
|
}
|
}
|