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