📄 bbstopic.java
字号:
package bbs.bean;
public class BbsTopic
implements java.io.Serializable {
private int tid; //-帖子编号(主键)
private int tsid; //版块ID
private String kname; //版块
private String uname; //发贴人
private int treplycount; //回复数量(默认0)
private String ttopic; //标题
private String tcontents; //正文
private String ttime; //发帖时间
private String tip; //发贴人IP地址
private int tclickcount; //点击数(默认0)
private int tstate; //状态(默认1)
private String tlastreply; //最后回复时间
private String rname; //回贴人
public String getKname() {
return kname;
}
public int getTclickcount() {
return tclickcount;
}
public String getTcontents() {
return tcontents;
}
public int getTid() {
return tid;
}
public String getTip() {
return tip;
}
public int getTreplycount() {
return treplycount;
}
public String getTlastreply() {
return tlastreply;
}
public int getTstate() {
return tstate;
}
public String getTtopic() {
return ttopic;
}
public String getUname() {
return uname;
}
public String getTtime() {
return ttime;
}
public String getRname() {
return rname;
}
public int getTsid() {
return tsid;
}
public void setUname(String uname) {
this.uname = uname;
}
public void setTtopic(String ttopic) {
this.ttopic = ttopic;
}
public void setTtime(String ttime) {
this.ttime = ttime;
}
public void setTstate(int tstate) {
this.tstate = tstate;
}
public void setTreplycount(int treplycount) {
this.treplycount = treplycount;
}
public void setTlastreply(String tlastreply) {
this.tlastreply = tlastreply;
}
public void setTip(String tip) {
this.tip = tip;
}
public void setTid(int tid) {
this.tid = tid;
}
public void setTcontents(String tcontents) {
this.tcontents = tcontents;
}
public void setTclickcount(int tclickcount) {
this.tclickcount = tclickcount;
}
public void setKname(String kname) {
this.kname = kname;
}
public void setRname(String rname) {
this.rname = rname;
}
public void setTsid(int tsid) {
this.tsid = tsid;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -