📄 newstable.java
字号:
package xwfb;
public class newsTable
{
private String id = "";
private String title = "";
private String content = "";
private String author = "";
private String editor = "";
private String editortime = "";
private String createtime = "";
public String getAuthor() {
return author;
}
public void setAuthor(String author) {
if(author != null)
this.author = author;
}
public void setContent(String content) {
if(content != null)
this.content = content;
}
public String getContent() {
return content;
}
public String getCreatetime() {
return createtime;
}
public void setCreatetime(String createtime) {
if(createtime != null)
this.createtime = createtime;
}
public void setEditor(String editor) {
if(editor != null)
this.editor = editor;
}
public String getEditor() {
return editor;
}
public String getEditortime() {
return editortime;
}
public void setEditortime(String editortime) {
if(editortime != null)
this.editortime = editortime;
}
public void setId(String id) {
if(id != null)
this.id = id;
}
public String getId() {
return id;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
if(title != null)
this.title = title;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -