package com.yeshi.buwan.videos.tencent.entity;
|
|
import org.springframework.data.annotation.Id;
|
import org.springframework.data.mongodb.core.mapping.Document;
|
|
import java.util.Date;
|
import java.util.List;
|
|
@Document(collection = "tencentCoverInfoV2")
|
public class TencentCoverInfo {
|
/**
|
* keyword : []
|
* publish_date : 2024-02-28
|
* title : 永安梦
|
* type : 2
|
* type_name : 电视剧
|
* category_map : ["10470","正片","1089","连续剧","2","电视剧"]
|
* leading_actor : ["欧阳娜娜","徐正溪","孙坚","夏楠","刘海宽"]
|
* tag : []
|
* area_name : 内地
|
* second_title : 欧阳娜娜徐正溪揭梦定情
|
* episode_all : 24
|
* guests : []
|
* cartoon_age :
|
* episode_updated
|
* new_pic_hz : https://vcover-hz-pic.puui.qpic.cn/vcover_hz_pic/0/mzc002001ow3dlb1709086532756/0
|
* new_pic_vt : https://vcover-vt-pic.puui.qpic.cn/vcover_vt_pic/0/mzc002001ow3dlb1708588840297/0
|
* description : 国都永安,因城西渠的垮塌,负责工事的都官尚书沈文祁一夕获罪,身陷牢狱。覆巢之下无完卵,沈家的两个女儿沈姌、沈甄也先后落入泥沼。尤其是小女沈甄一向养在深闺,不谙世事,此时流落街头,难以自保。此时正负责调查此案的廷尉陆时砚,也因为频频梦见自己与神秘女子的种种牵绊而陷入了困惑。经过求证,梦中出现的神秘女子正是罪臣之女沈甄。陆时砚一步步走近她,也一步步走向自己未知的命运。围绕城西渠一案,两人经历生死、交托信任,彼此情根深种。而陆时砚亦不负所托,在沈甄的帮助下,查明案情真相。然而真正的幕后黑手却向两人默默逼近。
|
* alias : ["长安第一美人"]
|
* cover_id : mzc002001ow3dlb
|
* pay_status : 0
|
*/
|
@Id
|
private String cover_id;
|
private String publish_date;
|
private String title;
|
private Integer type;
|
private String type_name;
|
private String area_name;
|
private String second_title;
|
private String episode_all;
|
private String cartoon_age;
|
private String new_pic_hz;
|
private String new_pic_vt;
|
private String description;
|
private String pay_status;
|
private List<String> keyword;
|
private List<String> category_map;
|
private List<String> leading_actor;
|
private List<String> tag;
|
private List<String> guests;
|
private List<String> alias;
|
private String score;
|
private String episode_updated;
|
private List<TencentCoverVideo> videoList;
|
private Date updateTime;
|
|
public String getEpisode_updated() {
|
return episode_updated;
|
}
|
|
public void setEpisode_updated(String episode_updated) {
|
this.episode_updated = episode_updated;
|
}
|
|
public String getPublish_date() {
|
return publish_date;
|
}
|
|
public void setPublish_date(String publish_date) {
|
this.publish_date = publish_date;
|
}
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public Integer getType() {
|
return type;
|
}
|
|
public void setType(Integer type) {
|
this.type = type;
|
}
|
|
public String getType_name() {
|
return type_name;
|
}
|
|
public void setType_name(String type_name) {
|
this.type_name = type_name;
|
}
|
|
public String getArea_name() {
|
return area_name;
|
}
|
|
public void setArea_name(String area_name) {
|
this.area_name = area_name;
|
}
|
|
public String getSecond_title() {
|
return second_title;
|
}
|
|
public void setSecond_title(String second_title) {
|
this.second_title = second_title;
|
}
|
|
public String getEpisode_all() {
|
return episode_all;
|
}
|
|
public void setEpisode_all(String episode_all) {
|
this.episode_all = episode_all;
|
}
|
|
public String getCartoon_age() {
|
return cartoon_age;
|
}
|
|
public void setCartoon_age(String cartoon_age) {
|
this.cartoon_age = cartoon_age;
|
}
|
|
public String getNew_pic_hz() {
|
return new_pic_hz;
|
}
|
|
public void setNew_pic_hz(String new_pic_hz) {
|
this.new_pic_hz = new_pic_hz;
|
}
|
|
public String getNew_pic_vt() {
|
return new_pic_vt;
|
}
|
|
public void setNew_pic_vt(String new_pic_vt) {
|
this.new_pic_vt = new_pic_vt;
|
}
|
|
public String getDescription() {
|
return description;
|
}
|
|
public void setDescription(String description) {
|
this.description = description;
|
}
|
|
public String getCover_id() {
|
return cover_id;
|
}
|
|
public void setCover_id(String cover_id) {
|
this.cover_id = cover_id;
|
}
|
|
public String getPay_status() {
|
return pay_status;
|
}
|
|
public void setPay_status(String pay_status) {
|
this.pay_status = pay_status;
|
}
|
|
public List<String> getKeyword() {
|
return keyword;
|
}
|
|
public void setKeyword(List<String> keyword) {
|
this.keyword = keyword;
|
}
|
|
public List<String> getCategory_map() {
|
return category_map;
|
}
|
|
public void setCategory_map(List<String> category_map) {
|
this.category_map = category_map;
|
}
|
|
public List<String> getLeading_actor() {
|
return leading_actor;
|
}
|
|
public void setLeading_actor(List<String> leading_actor) {
|
this.leading_actor = leading_actor;
|
}
|
|
public List<String> getTag() {
|
return tag;
|
}
|
|
public void setTag(List<String> tag) {
|
this.tag = tag;
|
}
|
|
public List<String> getGuests() {
|
return guests;
|
}
|
|
public void setGuests(List<String> guests) {
|
this.guests = guests;
|
}
|
|
public List<String> getAlias() {
|
return alias;
|
}
|
|
public void setAlias(List<String> alias) {
|
this.alias = alias;
|
}
|
|
public List<TencentCoverVideo> getVideoList() {
|
return videoList;
|
}
|
|
public void setVideoList(List<TencentCoverVideo> videoList) {
|
this.videoList = videoList;
|
}
|
|
public String getScore() {
|
return score;
|
}
|
|
public void setScore(String score) {
|
this.score = score;
|
}
|
|
public Date getUpdateTime() {
|
return updateTime;
|
}
|
|
public void setUpdateTime(Date updateTime) {
|
this.updateTime = updateTime;
|
}
|
}
|