noteentity.java
来自「MVC留言」· Java 代码 · 共 33 行
JAVA
33 行
package org.bob.entity;
public class NoteEntity {
private int noteid;
private String userid;
private String title;
private String note;
public int getNoteid() {
return noteid;
}
public void setNoteid(int noteid) {
this.noteid = noteid;
}
public String getUserid() {
return userid;
}
public void setUserid(String userid) {
this.userid = userid;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getNote() {
return note;
}
public void setNote(String note) {
this.note = note;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?