package com.newvideo.letv.entity;
|
|
public class LeTVVideo {
|
private String id;
|
private String category;
|
private String categoryName;
|
private String createTime;
|
private String mmsId;
|
private String subCategory;
|
private String subCategoryName;
|
private String videoId;
|
private String videoName;
|
private String cpName;
|
private String duration;
|
// ���������
|
private String episode;
|
private String cover;
|
private String area;
|
private String score;
|
private Object extendProperties;
|
private String synopsis;
|
|
public LeTVVideo() {
|
}
|
|
public LeTVVideo(String id) {
|
this.id = id;
|
}
|
|
public String getSynopsis() {
|
return synopsis;
|
}
|
|
public void setSynopsis(String synopsis) {
|
this.synopsis = synopsis;
|
}
|
|
private String extendPropertiesStr;
|
|
public String getExtendPropertiesStr() {
|
return extendPropertiesStr;
|
}
|
|
public void setExtendPropertiesStr(String extendPropertiesStr) {
|
this.extendPropertiesStr = extendPropertiesStr;
|
}
|
|
public String getEpisode() {
|
return episode;
|
}
|
|
public void setEpisode(String episode) {
|
this.episode = episode;
|
}
|
|
public String getCover() {
|
return cover;
|
}
|
|
public void setCover(String cover) {
|
this.cover = cover;
|
}
|
|
public String getArea() {
|
return area;
|
}
|
|
public void setArea(String area) {
|
this.area = area;
|
}
|
|
public String getScore() {
|
return score;
|
}
|
|
public void setScore(String score) {
|
this.score = score;
|
}
|
|
public Object getExtendProperties() {
|
return extendProperties;
|
}
|
|
public void setExtendProperties(Object extendProperties) {
|
this.extendProperties = extendProperties;
|
}
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getCategory() {
|
return category;
|
}
|
|
public void setCategory(String category) {
|
this.category = category;
|
}
|
|
public String getCategoryName() {
|
return categoryName;
|
}
|
|
public void setCategoryName(String categoryName) {
|
this.categoryName = categoryName;
|
}
|
|
public String getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(String createTime) {
|
this.createTime = createTime;
|
}
|
|
public String getMmsId() {
|
return mmsId;
|
}
|
|
public void setMmsId(String mmsId) {
|
this.mmsId = mmsId;
|
}
|
|
public String getSubCategory() {
|
return subCategory;
|
}
|
|
public void setSubCategory(String subCategory) {
|
this.subCategory = subCategory;
|
}
|
|
public String getSubCategoryName() {
|
return subCategoryName;
|
}
|
|
public void setSubCategoryName(String subCategoryName) {
|
this.subCategoryName = subCategoryName;
|
}
|
|
public String getVideoId() {
|
return videoId;
|
}
|
|
public void setVideoId(String videoId) {
|
this.videoId = videoId;
|
}
|
|
public String getVideoName() {
|
return videoName;
|
}
|
|
public void setVideoName(String videoName) {
|
this.videoName = videoName;
|
}
|
|
public String getCpName() {
|
return cpName;
|
}
|
|
public void setCpName(String cpName) {
|
this.cpName = cpName;
|
}
|
|
public String getDuration() {
|
return duration;
|
}
|
|
public void setDuration(String duration) {
|
this.duration = duration;
|
}
|
}
|