📄 topic.java
字号:
package bean;
import java.io.Serializable;
/**
* 论坛主题文章基本信息
* */
public class Topic implements Serializable {
private int id;//论坛文章id
private String topicname;//论坛文章标题
private String topiccontent;//论坛文章内容
private String owner;//论坛文章作者
private String time;//发表文章时间
private String sortid;//论坛文章所属讨论区类别
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getOwner() {
return owner;
}
public void setOwner(String owner) {
this.owner = owner;
}
public String getSortid() {
return sortid;
}
public void setSortid(String sortid) {
this.sortid = sortid;
}
public String getTime() {
return time;
}
public void setTime(String time) {
this.time = time;
}
public String getTopiccontent() {
return topiccontent;
}
public void setTopiccontent(String topiccontent) {
this.topiccontent = topiccontent;
}
public String getTopicname() {
return topicname;
}
public void setTopicname(String topicname) {
this.topicname = topicname;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -