package com.yeshi.buwan.videos.mogotv.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 = "mogoTVSearchVideoMap")
|
public class MogoTVSearchVideoMap {
|
@Id
|
private String videoId;
|
@Indexed
|
private String clipId;
|
private Date createTime;
|
|
|
public String getVideoId() {
|
return videoId;
|
}
|
|
public void setVideoId(String videoId) {
|
this.videoId = videoId;
|
}
|
|
public String getClipId() {
|
return clipId;
|
}
|
|
public void setClipId(String clipId) {
|
this.clipId = clipId;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
}
|