package com.newvideo.youku.entity;
|
|
import java.util.List;
|
|
public class Program {
|
private String id;
|
private String name;
|
private String subtitle;// 简要标题
|
private String link;
|
private String play_link;
|
private String last_play_link;
|
private String poster;
|
private String poster_large;// 大图封面
|
private String thumbnail;//
|
private String thumbnail_large;
|
private List<String> streamtypes;
|
private List<String> hasvideotype;
|
private int completed;
|
private String episode_count;// 总集数
|
private String episode_updated;// 更新的集数
|
private String category;// 主分类
|
private String genre;// 子分类
|
private String area;// 地区
|
private String update_notice;// 更新提示
|
private String view_count;// 观看次数
|
private String score;// 评分
|
private int paid;// 是否付费 0-否 1-是
|
private String published;
|
private String released;
|
private String comment_count;
|
private String favorite_count;
|
private String lastupdate;
|
private String description;// 简介
|
private String attrStr;// 属性
|
private List<ProgramVideo> videoList;
|
|
public Program() {
|
}
|
|
public Program(String id) {
|
this.id = id;
|
}
|
|
public String getSubtitle() {
|
return subtitle;
|
}
|
|
public void setSubtitle(String subtitle) {
|
this.subtitle = subtitle;
|
}
|
|
public List<ProgramVideo> getVideoList() {
|
return videoList;
|
}
|
|
public void setVideoList(List<ProgramVideo> videoList) {
|
this.videoList = videoList;
|
}
|
|
public String getPoster_large() {
|
return poster_large;
|
}
|
|
public void setPoster_large(String poster_large) {
|
this.poster_large = poster_large;
|
}
|
|
public String getThumbnail_large() {
|
return thumbnail_large;
|
}
|
|
public void setThumbnail_large(String thumbnail_large) {
|
this.thumbnail_large = thumbnail_large;
|
}
|
|
public String getGenre() {
|
return genre;
|
}
|
|
public void setGenre(String genre) {
|
this.genre = genre;
|
}
|
|
public String getArea() {
|
return area;
|
}
|
|
public void setArea(String area) {
|
this.area = area;
|
}
|
|
public String getUpdate_notice() {
|
return update_notice;
|
}
|
|
public void setUpdate_notice(String update_notice) {
|
this.update_notice = update_notice;
|
}
|
|
public int getPaid() {
|
return paid;
|
}
|
|
public void setPaid(int paid) {
|
this.paid = paid;
|
}
|
|
public String getDescription() {
|
return description;
|
}
|
|
public void setDescription(String description) {
|
this.description = description;
|
}
|
|
public String getAttrStr() {
|
return attrStr;
|
}
|
|
public void setAttrStr(String attrStr) {
|
this.attrStr = attrStr;
|
}
|
|
public List<String> getStreamtypes() {
|
return streamtypes;
|
}
|
|
public void setStreamtypes(List<String> streamtypes) {
|
this.streamtypes = streamtypes;
|
}
|
|
public List<String> getHasvideotype() {
|
return hasvideotype;
|
}
|
|
public void setHasvideotype(List<String> hasvideotype) {
|
this.hasvideotype = hasvideotype;
|
}
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getLink() {
|
return link;
|
}
|
|
public void setLink(String link) {
|
this.link = link;
|
}
|
|
public String getPlay_link() {
|
return play_link;
|
}
|
|
public void setPlay_link(String play_link) {
|
this.play_link = play_link;
|
}
|
|
public String getLast_play_link() {
|
return last_play_link;
|
}
|
|
public void setLast_play_link(String last_play_link) {
|
this.last_play_link = last_play_link;
|
}
|
|
public String getPoster() {
|
return poster;
|
}
|
|
public void setPoster(String poster) {
|
this.poster = poster;
|
}
|
|
public String getThumbnail() {
|
return thumbnail;
|
}
|
|
public void setThumbnail(String thumbnail) {
|
this.thumbnail = thumbnail;
|
}
|
|
public int getCompleted() {
|
return completed;
|
}
|
|
public void setCompleted(int completed) {
|
this.completed = completed;
|
}
|
|
public String getEpisode_count() {
|
return episode_count;
|
}
|
|
public void setEpisode_count(String episode_count) {
|
this.episode_count = episode_count;
|
}
|
|
public String getEpisode_updated() {
|
return episode_updated;
|
}
|
|
public void setEpisode_updated(String episode_updated) {
|
this.episode_updated = episode_updated;
|
}
|
|
public String getCategory() {
|
return category;
|
}
|
|
public void setCategory(String category) {
|
this.category = category;
|
}
|
|
public String getView_count() {
|
return view_count;
|
}
|
|
public void setView_count(String view_count) {
|
this.view_count = view_count;
|
}
|
|
public String getScore() {
|
return score;
|
}
|
|
public void setScore(String score) {
|
this.score = score;
|
}
|
|
public String getPublished() {
|
return published;
|
}
|
|
public void setPublished(String published) {
|
this.published = published;
|
}
|
|
public String getReleased() {
|
return released;
|
}
|
|
public void setReleased(String released) {
|
this.released = released;
|
}
|
|
public String getComment_count() {
|
return comment_count;
|
}
|
|
public void setComment_count(String comment_count) {
|
this.comment_count = comment_count;
|
}
|
|
public String getFavorite_count() {
|
return favorite_count;
|
}
|
|
public void setFavorite_count(String favorite_count) {
|
this.favorite_count = favorite_count;
|
}
|
|
public String getLastupdate() {
|
return lastupdate;
|
}
|
|
public void setLastupdate(String lastupdate) {
|
this.lastupdate = lastupdate;
|
}
|
}
|