package com.newvideo.domain;
|
|
import com.google.gson.annotations.Expose;
|
|
/**
|
* 首页提醒
|
*
|
* @author Administrator
|
*
|
*/
|
public class HomeNotice {
|
@Expose
|
private String id;
|
@Expose
|
private String content;
|
@Expose
|
private String url;
|
private SystemInfo system;
|
@Expose
|
private String beizhu;
|
@Expose
|
private String createtime;
|
@Expose
|
private String show;
|
@Expose
|
private String starttime;
|
@Expose
|
private String endtime;
|
|
public String getStarttime() {
|
return starttime;
|
}
|
|
public void setStarttime(String starttime) {
|
this.starttime = starttime;
|
}
|
|
public String getEndtime() {
|
return endtime;
|
}
|
|
public void setEndtime(String endtime) {
|
this.endtime = endtime;
|
}
|
|
public HomeNotice() {
|
}
|
|
public HomeNotice(String id) {
|
this.id = id;
|
}
|
|
public String getShow() {
|
return show;
|
}
|
|
public void setShow(String show) {
|
this.show = show;
|
}
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getContent() {
|
return content;
|
}
|
|
public void setContent(String content) {
|
this.content = content;
|
}
|
|
public String getUrl() {
|
return url;
|
}
|
|
public void setUrl(String url) {
|
this.url = url;
|
}
|
|
public SystemInfo getSystem() {
|
return system;
|
}
|
|
public void setSystem(SystemInfo system) {
|
this.system = system;
|
}
|
|
public String getBeizhu() {
|
return beizhu;
|
}
|
|
public void setBeizhu(String beizhu) {
|
this.beizhu = beizhu;
|
}
|
|
public String getCreatetime() {
|
return createtime;
|
}
|
|
public void setCreatetime(String createtime) {
|
this.createtime = createtime;
|
}
|
|
}
|