package com.yeshi.buwan.videos.tencent.vo;
|
|
import org.springframework.data.annotation.Id;
|
|
import java.util.List;
|
|
/**
|
* @author hxh
|
* @title: TencentCoverInfoVO
|
* @description: 腾讯视频接口解析结果
|
* @date 2024/3/14 11:16
|
*/
|
public class TencentCoverInfoVO {
|
|
/**
|
* 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 :
|
* 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 int type;
|
private String type_name;
|
private String area_name;
|
private String second_title;
|
private String episode_all;
|
private String episode_update;
|
private String cartoon_age;
|
private String new_pic_hz;
|
private String new_pic_vt;
|
private String description;
|
private String pay_status;
|
private Object category_map;
|
private Object leading_actor;
|
private Object tag;
|
private Object keyword;
|
private Object guests;
|
private Object alias;
|
private List<TencentCoverInfoVO.EpisodeVO> episodes;
|
|
public String getEpisode_update() {
|
return episode_update;
|
}
|
|
public void setEpisode_update(String episode_update) {
|
this.episode_update = episode_update;
|
}
|
|
|
public String getCover_id() {
|
return cover_id;
|
}
|
|
public void setCover_id(String cover_id) {
|
this.cover_id = cover_id;
|
}
|
|
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 int getType() {
|
return type;
|
}
|
|
public void setType(int 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 getPay_status() {
|
return pay_status;
|
}
|
|
public void setPay_status(String pay_status) {
|
this.pay_status = pay_status;
|
}
|
|
public Object getCategory_map() {
|
return category_map;
|
}
|
|
public void setCategory_map(Object category_map) {
|
this.category_map = category_map;
|
}
|
|
public Object getLeading_actor() {
|
return leading_actor;
|
}
|
|
public void setLeading_actor(Object leading_actor) {
|
this.leading_actor = leading_actor;
|
}
|
|
public Object getTag() {
|
return tag;
|
}
|
|
public void setTag(Object tag) {
|
this.tag = tag;
|
}
|
|
public Object getKeyword() {
|
return keyword;
|
}
|
|
public void setKeyword(Object keyword) {
|
this.keyword = keyword;
|
}
|
|
public Object getGuests() {
|
return guests;
|
}
|
|
public void setGuests(Object guests) {
|
this.guests = guests;
|
}
|
|
public Object getAlias() {
|
return alias;
|
}
|
|
public void setAlias(Object alias) {
|
this.alias = alias;
|
}
|
|
public List<EpisodeVO> getEpisodes() {
|
return episodes;
|
}
|
|
public void setEpisodes(List<EpisodeVO> episodes) {
|
this.episodes = episodes;
|
}
|
|
public static class EpisodeVO {
|
|
/**
|
* cid : mzc002001ow3dlb
|
* index : 1
|
* pic : https://vpic-cover.puui.qpic.cn/x00487c7lga/x00487c7lga_1708957547_hz.jpg/496
|
* picVertial : https://vpic-cover.puui.qpic.cn/x00487c7lga/x00487c7lga_1708957547_hz.jpg/496
|
* title : 2
|
* vid : x00487c7lga
|
* duration : 2635
|
* playTitle : 永安梦 第02集
|
* fullTitle : 永安梦 第02集
|
* itemType : 1
|
* listKey : mainList
|
* page : 0
|
* epIndex : 0
|
* refreshPage : 0
|
* isNoStoreWatchHistory : false
|
* videoSubtitle : 命定之人?欧阳娜娜流泪徐正溪疼到休克
|
*/
|
|
private String cid;
|
private int index;
|
private String pic;
|
private String picVertial;
|
private String title;
|
private String vid;
|
private int duration;
|
private String playTitle;
|
private String fullTitle;
|
private String itemType;
|
private String listKey;
|
private int page;
|
private int epIndex;
|
private String refreshPage;
|
private boolean isNoStoreWatchHistory;
|
private String videoSubtitle;
|
private String publishDate;
|
|
|
|
public String getCid() {
|
return cid;
|
}
|
|
public void setCid(String cid) {
|
this.cid = cid;
|
}
|
|
public int getIndex() {
|
return index;
|
}
|
|
public void setIndex(int index) {
|
this.index = index;
|
}
|
|
public String getPic() {
|
return pic;
|
}
|
|
public void setPic(String pic) {
|
this.pic = pic;
|
}
|
|
public String getPicVertial() {
|
return picVertial;
|
}
|
|
public void setPicVertial(String picVertial) {
|
this.picVertial = picVertial;
|
}
|
|
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;
|
}
|
|
public int getDuration() {
|
return duration;
|
}
|
|
public void setDuration(int duration) {
|
this.duration = duration;
|
}
|
|
public String getPlayTitle() {
|
return playTitle;
|
}
|
|
public void setPlayTitle(String playTitle) {
|
this.playTitle = playTitle;
|
}
|
|
public String getFullTitle() {
|
return fullTitle;
|
}
|
|
public void setFullTitle(String fullTitle) {
|
this.fullTitle = fullTitle;
|
}
|
|
public String getItemType() {
|
return itemType;
|
}
|
|
public void setItemType(String itemType) {
|
this.itemType = itemType;
|
}
|
|
public String getListKey() {
|
return listKey;
|
}
|
|
public void setListKey(String listKey) {
|
this.listKey = listKey;
|
}
|
|
public int getPage() {
|
return page;
|
}
|
|
public void setPage(int page) {
|
this.page = page;
|
}
|
|
public int getEpIndex() {
|
return epIndex;
|
}
|
|
public void setEpIndex(int epIndex) {
|
this.epIndex = epIndex;
|
}
|
|
public String getRefreshPage() {
|
return refreshPage;
|
}
|
|
public void setRefreshPage(String refreshPage) {
|
this.refreshPage = refreshPage;
|
}
|
|
public boolean isIsNoStoreWatchHistory() {
|
return isNoStoreWatchHistory;
|
}
|
|
public void setIsNoStoreWatchHistory(boolean isNoStoreWatchHistory) {
|
this.isNoStoreWatchHistory = isNoStoreWatchHistory;
|
}
|
|
public String getVideoSubtitle() {
|
return videoSubtitle;
|
}
|
|
public void setVideoSubtitle(String videoSubtitle) {
|
this.videoSubtitle = videoSubtitle;
|
}
|
|
public boolean isNoStoreWatchHistory() {
|
return isNoStoreWatchHistory;
|
}
|
|
public void setNoStoreWatchHistory(boolean noStoreWatchHistory) {
|
isNoStoreWatchHistory = noStoreWatchHistory;
|
}
|
|
public String getPublishDate() {
|
return publishDate;
|
}
|
|
public void setPublishDate(String publishDate) {
|
this.publishDate = publishDate;
|
}
|
}
|
|
|
|
|
}
|