📄 word.java
字号:
package com.chatroom.entity;
public class Word {
public Word(){}
public Word(long time,String content){
this.time=time;
this.content=content;
}
private long time;
private String content;
public long getTime() {
return time;
}
public void setTime(long time) {
this.time = time;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -