package com.newvideo.pptv.entity;
|
|
public class PPTVBaseVideo {
|
private String id;
|
private String version;
|
private String region;
|
private String showTime;
|
private String type;
|
private String introduction;
|
private String horizontalPoster;
|
private String newPoster;
|
private String otherName;
|
private String language;
|
private String englishName;
|
private String op;
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getOp() {
|
return op;
|
}
|
|
public void setOp(String op) {
|
this.op = op;
|
}
|
|
public String getVersion() {
|
return version;
|
}
|
|
public void setVersion(String version) {
|
this.version = version;
|
}
|
|
public String getRegion() {
|
return region;
|
}
|
|
public void setRegion(String region) {
|
this.region = region;
|
}
|
|
public String getShowTime() {
|
return showTime;
|
}
|
|
public void setShowTime(String showTime) {
|
this.showTime = showTime;
|
}
|
|
public String getType() {
|
return type;
|
}
|
|
public void setType(String type) {
|
this.type = type;
|
}
|
|
public String getIntroduction() {
|
return introduction;
|
}
|
|
public void setIntroduction(String introduction) {
|
this.introduction = introduction;
|
}
|
|
public String getHorizontalPoster() {
|
return horizontalPoster;
|
}
|
|
public void setHorizontalPoster(String horizontalPoster) {
|
this.horizontalPoster = horizontalPoster;
|
}
|
|
public String getNewPoster() {
|
return newPoster;
|
}
|
|
public void setNewPoster(String newPoster) {
|
this.newPoster = newPoster;
|
}
|
|
public String getOtherName() {
|
return otherName;
|
}
|
|
public void setOtherName(String otherName) {
|
this.otherName = otherName;
|
}
|
|
public String getLanguage() {
|
return language;
|
}
|
|
public void setLanguage(String language) {
|
this.language = language;
|
}
|
|
public String getEnglishName() {
|
return englishName;
|
}
|
|
public void setEnglishName(String englishName) {
|
this.englishName = englishName;
|
}
|
}
|