package com.yeshi.buwan.domain;
|
|
import com.google.gson.annotations.Expose;
|
import com.yeshi.buwan.domain.system.DetailSystem;
|
|
/**
|
* 版权视频名称库
|
*
|
* @author Administrator
|
*
|
*/
|
public class VideoBanQuan {
|
@Expose
|
private String id;
|
@Expose
|
private String name;
|
private int videoType;
|
private VideoResource videoResource;
|
private boolean show;// 是否显示版权
|
@Expose
|
private String createtime;
|
@Expose
|
private DetailSystem detailSystem;
|
|
|
public DetailSystem getDetailSystem() {
|
return detailSystem;
|
}
|
|
public void setDetailSystem(DetailSystem detailSystem) {
|
this.detailSystem = detailSystem;
|
}
|
|
public boolean isShow() {
|
return show;
|
}
|
|
public void setShow(boolean show) {
|
this.show = show;
|
}
|
|
public VideoResource getVideoResource() {
|
return videoResource;
|
}
|
|
public void setVideoResource(VideoResource videoResource) {
|
this.videoResource = videoResource;
|
}
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public int getVideoType() {
|
return videoType;
|
}
|
|
public void setVideoType(int videoType) {
|
this.videoType = videoType;
|
}
|
|
public String getCreatetime() {
|
return createtime;
|
}
|
|
public void setCreatetime(String createtime) {
|
this.createtime = createtime;
|
}
|
|
}
|