package com.yeshi.buwan.acFun;
|
|
import java.util.Date;
|
import java.util.List;
|
|
import org.springframework.data.annotation.Id;
|
import org.springframework.data.mongodb.core.index.Indexed;
|
import org.springframework.data.mongodb.core.mapping.Document;
|
import org.springframework.data.mongodb.core.mapping.Field;
|
|
@Document(collection = "acfunVideo")
|
public class AcfunVideoNew {
|
@Id
|
private String id;
|
@Field
|
private List<Integer> channelIds;
|
@Field
|
private String playUrl;
|
@Field
|
private String cover;
|
@Field
|
private String desc;
|
@Field
|
private List<String> tag;
|
@Field
|
private String title;
|
@Field
|
private Long updateTime;
|
@Indexed
|
@Field
|
private Boolean valid;
|
@Field
|
private Date createTime;
|
@Indexed
|
@Field
|
private Date lastestUpdateTime;
|
|
|
public Date getLastestUpdateTime() {
|
return lastestUpdateTime;
|
}
|
|
public void setLastestUpdateTime(Date lastestUpdateTime) {
|
this.lastestUpdateTime = lastestUpdateTime;
|
}
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public List<Integer> getChannelIds() {
|
return channelIds;
|
}
|
|
public void setChannelIds(List<Integer> channelIds) {
|
this.channelIds = channelIds;
|
}
|
|
public String getPlayUrl() {
|
return playUrl;
|
}
|
|
public void setPlayUrl(String playUrl) {
|
this.playUrl = playUrl;
|
}
|
|
public String getCover() {
|
return cover;
|
}
|
|
public void setCover(String cover) {
|
this.cover = cover;
|
}
|
|
public String getDesc() {
|
return desc;
|
}
|
|
public void setDesc(String desc) {
|
this.desc = desc;
|
}
|
|
public List<String> getTag() {
|
return tag;
|
}
|
|
public void setTag(List<String> tag) {
|
this.tag = tag;
|
}
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public Long getUpdateTime() {
|
return updateTime;
|
}
|
|
public void setUpdateTime(Long updateTime) {
|
this.updateTime = updateTime;
|
}
|
|
public Boolean getValid() {
|
return valid;
|
}
|
|
public void setValid(Boolean valid) {
|
this.valid = valid;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
}
|