topicinfovo.java
来自「用myeclipse开发的一个BBS论坛系统的源代码。大家可以看看。」· Java 代码 · 共 40 行
JAVA
40 行
package cn.edu.rjxy.model;
public class TopicInfoVO {
private String author;
private String title;
private String content;
private String posttime;
private String parentid;
public String getAuthor() {
return author;
}
public void setAuthor(String author) {
this.author = author;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getPosttime() {
return posttime;
}
public void setPosttime(String posttime) {
this.posttime = posttime;
}
public String getParentid() {
return parentid;
}
public void setParentid(String parentid) {
this.parentid = parentid;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?