📄 topic.java
字号:
/*
* s2jsp.lg.entity.Topic.java
* 2007-7-18
* 主题类
*/
package s2jsp.lg.entity;
public class Topic extends Tip {
private int topicId = 1; //唯一标志主题的id
private int boardId = 1; //引用板块的id,用来表示该帖子是哪个板块的
public int getTopicId() {
return topicId;
}
public void setTopicId(int topicId) {
this.topicId = topicId;
}
public int getBoardId() {
return boardId;
}
public void setBoardId(int boardId) {
this.boardId = boardId;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -