📄 saying.java
字号:
package com.aptech.bean;
public class Saying {
private int sid;
private String stitle;
private String scontent;
private String sdatetime;
private int uid;
private String uname; //留言人的名称
public Saying() {
super();
}
public Saying(String stitle, String scontent, int uid) {
super();
this.stitle = stitle;
this.scontent = scontent;
this.uid = uid;
}
public Saying(int sid, String stitle, String scontent, String sdatetime,
int uid, String uname) {
super();
this.sid = sid;
this.stitle = stitle;
this.scontent = scontent;
this.sdatetime = sdatetime;
this.uid = uid;
this.uname = uname;
}
public String getScontent() {
return scontent;
}
public void setScontent(String scontent) {
this.scontent = scontent;
}
public String getSdatetime() {
return sdatetime;
}
public void setSdatetime(String sdatetime) {
this.sdatetime = sdatetime;
}
public int getSid() {
return sid;
}
public void setSid(int sid) {
this.sid = sid;
}
public String getStitle() {
return stitle;
}
public void setStitle(String stitle) {
this.stitle = stitle;
}
public int getUid() {
return uid;
}
public void setUid(int uid) {
this.uid = uid;
}
public String getUname() {
return uname;
}
public void setUname(String uname) {
this.uname = uname;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -