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 = "mogoTVVideo")
|
public class MogoTVVideo {
|
@Id
|
private String video_id;//10718686
|
@Indexed
|
private String clip_id;//350860,
|
private Integer t1;//5,
|
private String t2;//01案:夜半酒店Ⅰ(下),
|
private String t3;//明星大侦探第六季01案:夜半酒店Ⅰ(下),
|
private String t4;//2020-12-25,
|
private String img;//https://1img.hitv.com/preview/sp_images/2020/12/25/20201225093530350.jpg_220x125.jpg,
|
private Integer isnew;//0,
|
private Integer isvip;//0,
|
private String url;///b/350860/10718686.html,
|
private Integer isIntact;//1,
|
private String time;//83:03,
|
private Integer contentType;//0,
|
private String ts;//2020-12-25 09:32:57.0,
|
private Date createTime;
|
private Date updateTime;
|
|
public String getVideo_id() {
|
return video_id;
|
}
|
|
public void setVideo_id(String video_id) {
|
this.video_id = video_id;
|
}
|
|
public String getClip_id() {
|
return clip_id;
|
}
|
|
public void setClip_id(String clip_id) {
|
this.clip_id = clip_id;
|
}
|
|
public Integer getT1() {
|
return t1;
|
}
|
|
public void setT1(Integer t1) {
|
this.t1 = t1;
|
}
|
|
public String getT2() {
|
return t2;
|
}
|
|
public void setT2(String t2) {
|
this.t2 = t2;
|
}
|
|
public String getT3() {
|
return t3;
|
}
|
|
public void setT3(String t3) {
|
this.t3 = t3;
|
}
|
|
public String getT4() {
|
return t4;
|
}
|
|
public void setT4(String t4) {
|
this.t4 = t4;
|
}
|
|
public String getImg() {
|
return img;
|
}
|
|
public void setImg(String img) {
|
this.img = img;
|
}
|
|
public Integer getIsnew() {
|
return isnew;
|
}
|
|
public void setIsnew(Integer isnew) {
|
this.isnew = isnew;
|
}
|
|
public Integer getIsvip() {
|
return isvip;
|
}
|
|
public void setIsvip(Integer isvip) {
|
this.isvip = isvip;
|
}
|
|
public String getUrl() {
|
return url;
|
}
|
|
public void setUrl(String url) {
|
this.url = url;
|
}
|
|
public Integer getIsIntact() {
|
return isIntact;
|
}
|
|
public void setIsIntact(Integer isIntact) {
|
this.isIntact = isIntact;
|
}
|
|
public String getTime() {
|
return time;
|
}
|
|
public void setTime(String time) {
|
this.time = time;
|
}
|
|
public Integer getContentType() {
|
return contentType;
|
}
|
|
public void setContentType(Integer contentType) {
|
this.contentType = contentType;
|
}
|
|
public String getTs() {
|
return ts;
|
}
|
|
public void setTs(String ts) {
|
this.ts = ts;
|
}
|
|
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;
|
}
|
}
|