package com.yeshi.buwan.domain;
|
|
public class PPTVVideo {
|
private String id;
|
private PPTVAccount account;
|
private String playstr;
|
private String videourl;
|
private String videodetailid;
|
private String updatetime;
|
private String msg;
|
|
private String name;
|
private String sha1;
|
private long size;
|
|
private boolean isUploaded;
|
|
|
public boolean isUploaded() {
|
return isUploaded;
|
}
|
|
public void setUploaded(boolean isUploaded) {
|
this.isUploaded = isUploaded;
|
}
|
|
public long getSize() {
|
return size;
|
}
|
|
public void setSize(long size) {
|
this.size = size;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getSha1() {
|
return sha1;
|
}
|
|
public void setSha1(String sha1) {
|
this.sha1 = sha1;
|
}
|
|
|
public String getMsg() {
|
return msg;
|
}
|
|
public void setMsg(String msg) {
|
this.msg = msg;
|
}
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public PPTVAccount getAccount() {
|
return account;
|
}
|
|
public void setAccount(PPTVAccount account) {
|
this.account = account;
|
}
|
|
public String getPlaystr() {
|
return playstr;
|
}
|
|
public void setPlaystr(String playstr) {
|
this.playstr = playstr;
|
}
|
|
public String getVideourl() {
|
return videourl;
|
}
|
|
public void setVideourl(String videourl) {
|
this.videourl = videourl;
|
}
|
|
public String getVideodetailid() {
|
return videodetailid;
|
}
|
|
public void setVideodetailid(String videodetailid) {
|
this.videodetailid = videodetailid;
|
}
|
|
public String getUpdatetime() {
|
return updatetime;
|
}
|
|
public void setUpdatetime(String updatetime) {
|
this.updatetime = updatetime;
|
}
|
|
}
|