📄 bbspropim.java
字号:
package com.yhbbs.bbs.bean;
import com.yhbbs.bbs.itface.BbsProp;
/**
* <p>Title:论坛系统属性的相关信息Bean</p>
* <li> 论坛系统属性<br>
* <br><b>WebSite: www.yyhweb.com</b>
* <br><b>CopyRight: yyhweb[由由华网]</b>
* @author stephen
* @version YHBBS-2.0
*/
public class BbsPropIm implements BbsProp{
private int id = 0;
private String name = "";
private String description = "";
private String address = "";
private String index = "";
private String indexadd = "";
private String copyright = "";
private String record = "";
private String bbswidth = "";
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
public String getBbswidth() {
return bbswidth;
}
public void setBbswidth(String bbswidth) {
this.bbswidth = bbswidth;
}
public String getCopyright() {
return copyright;
}
public void setCopyright(String copyright) {
this.copyright = copyright;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getIndex() {
return index;
}
public void setIndex(String index) {
this.index = index;
}
public String getIndexadd() {
return indexadd;
}
public void setIndexadd(String indexadd) {
this.indexadd = indexadd;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getRecord() {
return record;
}
public void setRecord(String record) {
this.record = record;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -