package com.newvideo.youku.entity; import java.util.List; //节目视频 public class ProgramVideo { private String id; private String stage; private String seq; private String title;// 名称 private String link; private List streamtypes; private String thumbnail; private String bigThumbnail;// 新加的 private String thumbnail_v2; private String duration; private String category; private String view_count; private String favorite_count; private String up_count; private String down_count; private String published; private String state;// normal的时候正常 private String rc_title; private int is_panorama; private String copyright_type; private String public_type; private String downloadStatus; private String operationLimit; public String getCopyright_type() { return copyright_type; } public void setCopyright_type(String copyright_type) { this.copyright_type = copyright_type; } public String getPublic_type() { return public_type; } public void setPublic_type(String public_type) { this.public_type = public_type; } public String getDownloadStatus() { return downloadStatus; } public void setDownloadStatus(String downloadStatus) { this.downloadStatus = downloadStatus; } public String getOperationLimit() { return operationLimit; } public void setOperationLimit(String operationLimit) { this.operationLimit = operationLimit; } public ProgramVideo(String id) { this.id = id; } public ProgramVideo() { } public String getBigThumbnail() { return bigThumbnail; } public void setBigThumbnail(String bigThumbnail) { this.bigThumbnail = bigThumbnail; } public String getId() { return id; } public void setId(String id) { this.id = id; } public String getStage() { return stage; } public void setStage(String stage) { this.stage = stage; } public String getSeq() { return seq; } public void setSeq(String seq) { this.seq = seq; } 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 List getStreamtypes() { return streamtypes; } public void setStreamtypes(List streamtypes) { this.streamtypes = streamtypes; } public String getThumbnail() { return thumbnail; } public void setThumbnail(String thumbnail) { this.thumbnail = thumbnail; } public String getThumbnail_v2() { return thumbnail_v2; } public void setThumbnail_v2(String thumbnail_v2) { this.thumbnail_v2 = thumbnail_v2; } 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 getView_count() { return view_count; } public void setView_count(String view_count) { this.view_count = view_count; } public String getFavorite_count() { return favorite_count; } public void setFavorite_count(String favorite_count) { this.favorite_count = favorite_count; } public String getUp_count() { return up_count; } public void setUp_count(String up_count) { this.up_count = up_count; } public String getDown_count() { return down_count; } public void setDown_count(String down_count) { this.down_count = down_count; } public String getPublished() { return published; } public void setPublished(String published) { this.published = published; } public String getState() { return state; } public void setState(String state) { this.state = state; } public String getRc_title() { return rc_title; } public void setRc_title(String rc_title) { this.rc_title = rc_title; } public int getIs_panorama() { return is_panorama; } public void setIs_panorama(int is_panorama) { this.is_panorama = is_panorama; } }