mirror of
https://github.com/Hello-hao/Tbed.git
synced 2024-04-21 12:32:10 +00:00
224 lines
4.8 KiB
Java
224 lines
4.8 KiB
Java
package cn.hellohao.pojo;
|
|
|
|
public class Config {
|
|
private Integer id;
|
|
private Integer sourcekey;
|
|
private Integer emails;
|
|
private String webname;
|
|
private String explain;
|
|
private String video;
|
|
private Integer backtype;
|
|
private String links;
|
|
private String notice;
|
|
private String baidu;
|
|
private String domain;
|
|
private String background1;
|
|
private String background2;
|
|
private String sett;
|
|
private String webms;
|
|
private String webkeywords;
|
|
private String webfavicons;
|
|
private Integer theme;
|
|
private String websubtitle;
|
|
private String logo;
|
|
private String aboutinfo;
|
|
|
|
public Config() {
|
|
}
|
|
|
|
public Config(Integer id, Integer sourcekey, Integer emails, String webname, String explain, String video, Integer backtype,
|
|
String links, String notice, String baidu, String domain, String background1, String background2, String sett,
|
|
String webms, String webkeywords, String webfavicons, Integer theme,String websubtitle,String logo,String aboutinfo) {
|
|
this.id = id;
|
|
this.sourcekey = sourcekey;
|
|
this.emails = emails;
|
|
this.webname = webname;
|
|
this.explain = explain;
|
|
this.video = video;
|
|
this.backtype = backtype;
|
|
this.links = links;
|
|
this.notice = notice;
|
|
this.baidu = baidu;
|
|
this.domain = domain;
|
|
this.background1 = background1;
|
|
this.background2 = background2;
|
|
this.sett = sett;
|
|
this.webms = webms;
|
|
this.webkeywords = webkeywords;
|
|
this.webfavicons = webfavicons;
|
|
this.theme = theme;
|
|
this.websubtitle = websubtitle;
|
|
this.logo = logo;
|
|
this.aboutinfo = aboutinfo;
|
|
|
|
}
|
|
|
|
public Integer getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(Integer id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public Integer getSourcekey() {
|
|
return sourcekey;
|
|
}
|
|
|
|
public void setSourcekey(Integer sourcekey) {
|
|
this.sourcekey = sourcekey;
|
|
}
|
|
|
|
public Integer getEmails() {
|
|
return emails;
|
|
}
|
|
|
|
public void setEmails(Integer emails) {
|
|
this.emails = emails;
|
|
}
|
|
|
|
public String getWebname() {
|
|
return webname;
|
|
}
|
|
|
|
public void setWebname(String webname) {
|
|
this.webname = webname;
|
|
}
|
|
|
|
public String getExplain() {
|
|
return explain;
|
|
}
|
|
|
|
public void setExplain(String explain) {
|
|
this.explain = explain;
|
|
}
|
|
|
|
public String getVideo() {
|
|
return video;
|
|
}
|
|
|
|
public void setVideo(String video) {
|
|
this.video = video;
|
|
}
|
|
|
|
public Integer getBacktype() {
|
|
return backtype;
|
|
}
|
|
|
|
public void setBacktype(Integer backtype) {
|
|
this.backtype = backtype;
|
|
}
|
|
|
|
public String getLinks() {
|
|
return links;
|
|
}
|
|
|
|
public void setLinks(String links) {
|
|
this.links = links;
|
|
}
|
|
|
|
public String getNotice() {
|
|
return notice;
|
|
}
|
|
|
|
public void setNotice(String notice) {
|
|
this.notice = notice;
|
|
}
|
|
|
|
public String getBaidu() {
|
|
return baidu;
|
|
}
|
|
|
|
public void setBaidu(String baidu) {
|
|
this.baidu = baidu;
|
|
}
|
|
|
|
public String getDomain() {
|
|
return domain;
|
|
}
|
|
|
|
public void setDomain(String domain) {
|
|
this.domain = domain;
|
|
}
|
|
|
|
public String getBackground1() {
|
|
return background1;
|
|
}
|
|
|
|
public void setBackground1(String background1) {
|
|
this.background1 = background1;
|
|
}
|
|
|
|
public String getBackground2() {
|
|
return background2;
|
|
}
|
|
|
|
public void setBackground2(String background2) {
|
|
this.background2 = background2;
|
|
}
|
|
|
|
public String getSett() {
|
|
return sett;
|
|
}
|
|
|
|
public void setSett(String sett) {
|
|
this.sett = sett;
|
|
}
|
|
|
|
public String getWebms() {
|
|
return webms;
|
|
}
|
|
|
|
public void setWebms(String webms) {
|
|
this.webms = webms;
|
|
}
|
|
|
|
public String getWebkeywords() {
|
|
return webkeywords;
|
|
}
|
|
|
|
public void setWebkeywords(String webkeywords) {
|
|
this.webkeywords = webkeywords;
|
|
}
|
|
|
|
public String getWebfavicons() {
|
|
return webfavicons;
|
|
}
|
|
|
|
public void setWebfavicons(String webfavicons) {
|
|
this.webfavicons = webfavicons;
|
|
}
|
|
|
|
public Integer getTheme() {
|
|
return theme;
|
|
}
|
|
|
|
public void setTheme(Integer theme) {
|
|
this.theme = theme;
|
|
}
|
|
|
|
public String getWebsubtitle() {
|
|
return websubtitle;
|
|
}
|
|
|
|
public void setWebsubtitle(String websubtitle) {
|
|
this.websubtitle = websubtitle;
|
|
}
|
|
|
|
public String getLogo() {
|
|
return logo;
|
|
}
|
|
|
|
public void setLogo(String logo) {
|
|
this.logo = logo;
|
|
}
|
|
|
|
public String getAboutinfo() {
|
|
return aboutinfo;
|
|
}
|
|
|
|
public void setAboutinfo(String aboutinfo) {
|
|
this.aboutinfo = aboutinfo;
|
|
}
|
|
}
|