package com.newvideo.youku.entity;
|
|
import java.util.List;
|
|
public class YouKuVideoDetail {
|
private String id;
|
private String title;
|
private String link;
|
private String thumbnail;
|
private String bigThumbnail;
|
private String duration;
|
private String category;
|
private String state;
|
private String created;
|
private String published;
|
private String description;
|
private String player;
|
private String public_type;
|
private String copyright_type;// 版权所有 original: 原创 reproduced: 转载
|
private String tags;
|
private List<String> operation_limit;
|
private List<String> download_status;
|
private int is_panorama;
|
private int ischannel;
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public String getLink() {
|
return link;
|
}
|
|
public void setLink(String link) {
|
this.link = link;
|
}
|
|
public String getThumbnail() {
|
return thumbnail;
|
}
|
|
public void setThumbnail(String thumbnail) {
|
this.thumbnail = thumbnail;
|
}
|
|
public String getBigThumbnail() {
|
return bigThumbnail;
|
}
|
|
public void setBigThumbnail(String bigThumbnail) {
|
this.bigThumbnail = bigThumbnail;
|
}
|
|
public String getDuration() {
|
return duration;
|
}
|
|
public void setDuration(String duration) {
|
this.duration = duration;
|
}
|
|
public String getCategory() {
|
return category;
|
}
|
|
public void setCategory(String category) {
|
this.category = category;
|
}
|
|
public String getState() {
|
return state;
|
}
|
|
public void setState(String state) {
|
this.state = state;
|
}
|
|
public String getCreated() {
|
return created;
|
}
|
|
public void setCreated(String created) {
|
this.created = created;
|
}
|
|
public String getPublished() {
|
return published;
|
}
|
|
public void setPublished(String published) {
|
this.published = published;
|
}
|
|
public String getDescription() {
|
return description;
|
}
|
|
public void setDescription(String description) {
|
this.description = description;
|
}
|
|
public String getPlayer() {
|
return player;
|
}
|
|
public void setPlayer(String player) {
|
this.player = player;
|
}
|
|
public String getPublic_type() {
|
return public_type;
|
}
|
|
public void setPublic_type(String public_type) {
|
this.public_type = public_type;
|
}
|
|
public String getCopyright_type() {
|
return copyright_type;
|
}
|
|
public void setCopyright_type(String copyright_type) {
|
this.copyright_type = copyright_type;
|
}
|
|
public String getTags() {
|
return tags;
|
}
|
|
public void setTags(String tags) {
|
this.tags = tags;
|
}
|
|
public List<String> getOperation_limit() {
|
return operation_limit;
|
}
|
|
public void setOperation_limit(List<String> operation_limit) {
|
this.operation_limit = operation_limit;
|
}
|
|
public List<String> getDownload_status() {
|
return download_status;
|
}
|
|
public void setDownload_status(List<String> download_status) {
|
this.download_status = download_status;
|
}
|
|
public int getIs_panorama() {
|
return is_panorama;
|
}
|
|
public void setIs_panorama(int is_panorama) {
|
this.is_panorama = is_panorama;
|
}
|
|
public int getIschannel() {
|
return ischannel;
|
}
|
|
public void setIschannel(int ischannel) {
|
this.ischannel = ischannel;
|
}
|
|
}
|