📄 news.java
字号:
package myweb.bean;
public class News {
private String newtitle;//新闻标题
private String newcontent;//新闻内容
public News(){}
// 新闻标题
public void setNewtitle(String newtitle) {
this.newtitle = newtitle;
}
public String getNewtitle() {
return this.newtitle;
}
// 新闻内容
public void setNewcontent(String newcontent) {
this.newcontent=newcontent;
}
public String getNewcontent() {
return this.newcontent;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -