📄 news.java
字号:
package entity;
public class News {
private int newsID;
private String title;
private String content;
private String writerDate;
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public int getNewsID() {
return newsID;
}
public void setNewsID(int newsID) {
this.newsID = newsID;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getWriterDate() {
return writerDate;
}
public void setWriterDate(String writerDate) {
this.writerDate = writerDate;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -